diff options
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..29662a6 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,27 @@ +cmake_minimum_required(VERSION 3.12) + +project( + misplays + VERSION 0.0.1 + LANGUAGES C +) + +set_property(GLOBAL PROPERTY C_STANDARD 99) +add_compile_options(-W -Wall -Wextra -Wpedantic -g) +add_compile_definitions( + MISPLAYS_VERSION=${PROJECT_VERSION} + _GNU_SOURCE +) + +add_executable(${PROJECT_NAME} + console.c + curshelpers.c + misplays.c +) + +target_link_libraries(${PROJECT_NAME} + ncurses + panel +) + +install(TARGETS ${PROJECT_NAME}) |