aboutsummaryrefslogtreecommitdiffstats
path: root/CMakeLists.txt
diff options
context:
space:
mode:
authorRose Hogenson <rosehogenson@posteo.net>2025-04-12 22:39:14 -0700
committerRose Hogenson <rosehogenson@posteo.net>2025-04-12 22:39:14 -0700
commit14876a091a31b10a0cef7aa59a8384b48a059af8 (patch)
tree47c41b069fb4fc2d58a5ed0a0e66266af441e025 /CMakeLists.txt
parentyo (diff)
downloadyetihack-14876a091a31b10a0cef7aa59a8384b48a059af8.tar.zst
Modernize the build systemHEADmain
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt11
1 files changed, 0 insertions, 11 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
deleted file mode 100644
index 43e5163..0000000
--- a/CMakeLists.txt
+++ /dev/null
@@ -1,11 +0,0 @@
-cmake_minimum_required (VERSION 2.6)
-project (yetihack)
-add_executable (yetihack ${PROJECT_SOURCE_DIR}/src/yetihack.cpp ${PROJECT_SOURCE_DIR}/src/yeti.cpp)
-find_package(Curses)
-target_link_libraries(yetihack ${CURSES_LIBRARIES})
-include (CheckIncludeFile)
-check_include_file(unistd.h HAVE_UNISTD_H)
-check_include_file(windows.h HAVE_WINDOWS_H)
-configure_file("${PROJECT_SOURCE_DIR}/include/config.h.in" "${PROJECT_SOURCE_DIR}/include/config.h")
-include_directories("include")
-install (TARGETS yetihack DESTINATION bin)