diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2019-09-11 18:25:25 -0700 |
---|---|---|
committer | Daniel Hahler <git@thequod.de> | 2019-09-12 03:25:25 +0200 |
commit | 108763171f6d26c098422925e58df585c415324f (patch) | |
tree | ace7ec355b73ede72eac4955986fa2d03e6c0fcb | |
parent | b78be5bd08436d5051cab96205328cd2aae21788 (diff) | |
download | rneovim-108763171f6d26c098422925e58df585c415324f.tar.gz rneovim-108763171f6d26c098422925e58df585c415324f.tar.bz2 rneovim-108763171f6d26c098422925e58df585c415324f.zip |
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 2a590e229363
ref https://github.com/neovim/neovim/issues/10991
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index ea4e1e08f2..5fc589cc5f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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) |