diff options
author | ZyX <kp-pav@yandex.ru> | 2017-01-28 22:16:24 +0300 |
---|---|---|
committer | ZyX <kp-pav@yandex.ru> | 2017-03-27 00:12:23 +0300 |
commit | d836464cd2a6cdb4f4b797677794a376d5a12a45 (patch) | |
tree | cbd6c284f9e9fb7a596fd1e3c4bd1a822d8b777d | |
parent | ae4adcc70735a89bffb110bcf9d5a993b0786c4d (diff) | |
download | rneovim-d836464cd2a6cdb4f4b797677794a376d5a12a45.tar.gz rneovim-d836464cd2a6cdb4f4b797677794a376d5a12a45.tar.bz2 rneovim-d836464cd2a6cdb4f4b797677794a376d5a12a45.zip |
cmake: Also include luajit directories for libnvim target
-rw-r--r-- | src/nvim/CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/CMakeLists.txt b/src/nvim/CMakeLists.txt index be3c8d1b07..0cf331206e 100644 --- a/src/nvim/CMakeLists.txt +++ b/src/nvim/CMakeLists.txt @@ -374,6 +374,7 @@ endif() add_library(libnvim STATIC EXCLUDE_FROM_ALL ${NEOVIM_GENERATED_SOURCES} ${NEOVIM_SOURCES} ${NEOVIM_HEADERS}) +target_include_directories(libnvim SYSTEM PRIVATE ${LUAJIT_INCLUDE_DIRS}) target_link_libraries(libnvim ${NVIM_TEST_LINK_LIBRARIES}) set_target_properties(libnvim PROPERTIES POSITION_INDEPENDENT_CODE ON |