diff options
author | Přemysl Eric Janouch <p@janouch.name> | 2021-01-16 16:43:00 +0100 |
---|---|---|
committer | Přemysl Eric Janouch <p@janouch.name> | 2021-01-16 16:43:00 +0100 |
commit | a41d67432dfeb624e18884436adbe9b928090e70 (patch) | |
tree | d62e38bf43f82b1acf7622200f585945fa9f1c2b /CMakeLists.txt | |
parent | 5e66f5402d2c1165324fae9747e815380d495cb4 (diff) | |
download | hex-a41d67432dfeb624e18884436adbe9b928090e70.tar.gz hex-a41d67432dfeb624e18884436adbe9b928090e70.tar.xz hex-a41d67432dfeb624e18884436adbe9b928090e70.zip |
Fix incomplete liberty bump
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 333c408..109cb90 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -37,8 +37,8 @@ else () set (Termo_LIBRARIES termo-static) endif () -set (project_libraries ${UNISTRING_LIBRARIES} - ${NCURSESW_LIBRARIES} termo-static) +set (project_libraries ${Unistring_LIBRARIES} + ${Ncursesw_LIBRARIES} termo-static) pkg_search_module (lua lua53 lua5.3 lua-5.3 lua>=5.3) option (WITH_LUA "Enable support for Lua plugins" ${lua_FOUND}) @@ -62,12 +62,12 @@ if (WITH_LUA) endif () endif () -include_directories (${UNISTRING_INCLUDE_DIRS} - ${NCURSESW_INCLUDE_DIRS} ${Termo_INCLUDE_DIRS}) +include_directories (${Unistring_INCLUDE_DIRS} + ${Ncursesw_INCLUDE_DIRS} ${Termo_INCLUDE_DIRS}) # Configuration include (CheckFunctionExists) -set (CMAKE_REQUIRED_LIBRARIES ${NCURSESW_LIBRARIES}) +set (CMAKE_REQUIRED_LIBRARIES ${Ncursesw_LIBRARIES}) CHECK_FUNCTION_EXISTS ("resizeterm" HAVE_RESIZETERM) # Generate a configuration file |