cordle/CMakeLists.txt
Gregory Gauthier cdd51fdf5c initial commit
2025-10-06 14:01:05 +01:00

14 lines
321 B
CMake

cmake_minimum_required(VERSION 4.0)
project(cordle C)
set(CMAKE_C_STANDARD 90)
# Find the curses library
find_package(Curses REQUIRED)
add_executable(cordle cordle.c)
# Link against the curses library
target_link_libraries(cordle ${CURSES_LIBRARIES})
target_include_directories(cordle PRIVATE ${CURSES_INCLUDE_DIRS})