blob: 15baa0d753f75533659e7929351a06ffd3c95b0e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
find_package(PkgConfig REQUIRED)
pkg_check_modules(NCURSES QUIET ncurses)
if (NCURSES_FOUND)
foreach (variable IN ITEMS PREFIX INCLUDEDIR LIBDIR)
get_property(value
CACHE "NCURSES_${variable}"
PROPERTY VALUE)
if (NOT value STREQUAL NCURSES_${variable})
message(FATAL_ERROR "Failed to set cache entry for NCURSES_${variable}:\nexpected -->${value}<--\nreceived -->${NCURSES_${variable}}<--")
endif ()
endforeach ()
else ()
message(STATUS "skipping test; ncurses not found")
endif ()
|