diff options
author | Přemysl Eric Janouch <p@janouch.name> | 2020-09-07 18:39:59 +0200 |
---|---|---|
committer | Přemysl Eric Janouch <p@janouch.name> | 2020-09-07 18:39:59 +0200 |
commit | 74f2bcae34238464435bb30237e8a0ca8d605172 (patch) | |
tree | 6d269d60edf8c04d52f4c95e1e561782d264a82f /cmake/FindNcursesw.cmake | |
parent | 695f71d9462ce3fe0bdcbe7fae9015ce254512fd (diff) | |
download | tdv-74f2bcae34238464435bb30237e8a0ca8d605172.tar.gz tdv-74f2bcae34238464435bb30237e8a0ca8d605172.tar.xz tdv-74f2bcae34238464435bb30237e8a0ca8d605172.zip |
Get rid of one CMake dev warning
Diffstat (limited to 'cmake/FindNcursesw.cmake')
-rw-r--r-- | cmake/FindNcursesw.cmake | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/cmake/FindNcursesw.cmake b/cmake/FindNcursesw.cmake index 88c1d01..0536674 100644 --- a/cmake/FindNcursesw.cmake +++ b/cmake/FindNcursesw.cmake @@ -1,17 +1,17 @@ # Public Domain find_package (PkgConfig REQUIRED) -pkg_check_modules (NCURSESW QUIET ncursesw) +pkg_check_modules (Ncursesw QUIET ncursesw) # OpenBSD doesn't provide a pkg-config file -set (required_vars NCURSESW_LIBRARIES) -if (NOT NCURSESW_FOUND) - find_library (NCURSESW_LIBRARIES NAMES ncursesw) - find_path (NCURSESW_INCLUDE_DIRS ncurses.h) - list (APPEND required_vars NCURSESW_INCLUDE_DIRS) -endif (NOT NCURSESW_FOUND) +set (required_vars Ncursesw_LIBRARIES) +if (NOT Ncursesw_FOUND) + find_library (Ncursesw_LIBRARIES NAMES ncursesw) + find_path (Ncursesw_INCLUDE_DIRS ncurses.h) + list (APPEND required_vars Ncursesw_INCLUDE_DIRS) +endif (NOT Ncursesw_FOUND) include (FindPackageHandleStandardArgs) -FIND_PACKAGE_HANDLE_STANDARD_ARGS (NCURSESW DEFAULT_MSG ${required_vars}) +FIND_PACKAGE_HANDLE_STANDARD_ARGS (Ncursesw DEFAULT_MSG ${required_vars}) -mark_as_advanced (NCURSESW_LIBRARIES NCURSESW_INCLUDE_DIRS) +mark_as_advanced (Ncursesw_LIBRARIES Ncursesw_INCLUDE_DIRS) |