diff options
author | John Szakmeister <john@szakmeister.net> | 2014-11-08 16:09:47 -0500 |
---|---|---|
committer | John Szakmeister <john@szakmeister.net> | 2014-11-08 16:11:12 -0500 |
commit | 05f78d30ac5eb4c4df712d78d1366f3cee896417 (patch) | |
tree | db3a2c0b5d7dce04ca3b30ba3925410477d9d0ff | |
parent | 2aeda4ba6f033707dd96daabd2084d239ac82b3d (diff) | |
download | rneovim-05f78d30ac5eb4c4df712d78d1366f3cee896417.tar.gz rneovim-05f78d30ac5eb4c4df712d78d1366f3cee896417.tar.bz2 rneovim-05f78d30ac5eb4c4df712d78d1366f3cee896417.zip |
build: use the proper libintl include variable
What was there worked, but it wasn't meant to be the variable that you
use for inclusion.
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 951a0c14f3..6d53ba4727 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -119,7 +119,7 @@ include_directories(SYSTEM ${LUAJIT_INCLUDE_DIRS}) find_package(LibIntl) if(LibIntl_FOUND) - include_directories(SYSTEM ${LibIntl_INCLUDE_DIR}) + include_directories(SYSTEM ${LibIntl_INCLUDE_DIRS}) endif() # Determine platform's threading library. Set CMAKE_THREAD_PREFER_PTHREAD |