diff options
author | lyuts <dioxinu@gmail.com> | 2015-03-14 23:07:06 -0700 |
---|---|---|
committer | lyuts <dioxinu@gmail.com> | 2015-03-15 00:11:10 -0700 |
commit | 862d687fea52001efa60ed3f78c2651c1bddb28d (patch) | |
tree | 57519519d4828c6673eeb3c729c6846b917512ed | |
parent | 3e9ca91ff6832000340b4bda85ca2412f7d26dc7 (diff) | |
download | rneovim-862d687fea52001efa60ed3f78c2651c1bddb28d.tar.gz rneovim-862d687fea52001efa60ed3f78c2651c1bddb28d.tar.bz2 rneovim-862d687fea52001efa60ed3f78c2651c1bddb28d.zip |
Fixed compilation when using custom libtermkey (not installed in base
system).
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 1af79e60a8..c56e883f24 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -193,7 +193,7 @@ include_directories(SYSTEM ${LIBUNIBILIUM_INCLUDE_DIRS}) option(LIBTERMKEY_USE_STATIC "Use static libtermkey" ON) find_package(LibTermkey REQUIRED) -include_directories(SYSTEM ${LIBTERMEY_INCLUDE_DIRS}) +include_directories(SYSTEM ${LIBTERMKEY_INCLUDE_DIRS}) option(LIBVTERM_USE_STATIC "Use static libvterm" ON) find_package(LibVterm REQUIRED) |