aboutsummaryrefslogtreecommitdiffstats
path: root/CMakeLists.txt
blob: 43e5163c16ffcc681fab98ff02c5db7a69c92060 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
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)