build: dependencies: specify minimum libvterm (#10997)

libvterm now advertises a version number, so we can specify the minimum
required version.  And this is necessary because there were breaking
changes in its API.

ref 2a590e2293
ref https://github.com/neovim/neovim/issues/10991
This commit is contained in:
Justin M. Keyes 2019-09-11 18:25:25 -07:00 committed by Daniel Hahler
parent b78be5bd08
commit 108763171f

View File

@ -432,7 +432,7 @@ if(FEAT_TUI)
include_directories(SYSTEM ${LIBTERMKEY_INCLUDE_DIRS})
endif()
find_package(LIBVTERM REQUIRED)
find_package(LIBVTERM 0.1 REQUIRED)
include_directories(SYSTEM ${LIBVTERM_INCLUDE_DIRS})
if(WIN32)