Files
CMake/Source/Checks/Curses/CMakeLists.txt
Peter Kokot fb53372487 FindCurses: Update documentation
- Module documentation synced with other similar find modules.
- Added examples section.
- Documented backward-compatibility variables as deprecated.
- Added versions mentioning when variable got obsoleted/deprecated.
- Curses_FOUND variable used instead of the CURSES_FOUND. Both are set
  by the find_package_handle_standard_args().
2025-04-05 21:34:34 +02:00

23 lines
538 B
CMake

cmake_minimum_required(VERSION 3.13...3.31 FATAL_ERROR)
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()