Files
CMake/Source/Checks/Curses/CMakeLists.txt
Brad King 99bf77f49c ccmake: Check for curses more robustly before enabling
Compute a default for `BUILD_CursesDialog` by building a small test
project that uses curses.  Disable `ccmake` by default if it fails,
and do not search for Curses as part of the main build.  This avoids
creating FindCurses cache entries when we are not considering ccmake.

If `BUILD_CursesDialog` is enabled (e.g. by the user) then warn if
curses cannot be found.
2018-03-21 13:57:45 -04:00

26 lines
577 B
CMake

cmake_minimum_required(VERSION 3.1)
if(POLICY CMP0060)
cmake_policy(SET CMP0060 NEW)
endif()
project(CheckCurses C)
set(CURSES_NEED_NCURSES TRUE)
find_package(Curses)
if(NOT CURSES_FOUND)
return()
endif()
include_directories(${CURSES_INCLUDE_DIRS})
add_executable(CheckCurses CheckCurses.c)
target_link_libraries(CheckCurses ${CURSES_LIBRARIES})
foreach(h
CURSES_HAVE_CURSES_H
CURSES_HAVE_NCURSES_H
CURSES_HAVE_NCURSES_NCURSES_H
CURSES_HAVE_NCURSES_CURSES_H
)
if(${h})
target_compile_definitions(CheckCurses PRIVATE ${h})
endif()
endforeach()