1
0
mirror of https://github.com/Tha14/toxic.git synced 2025-12-06 21:36:35 +01:00
Files
toxic/CMakeLists.txt
Maxim Biro 4063f14f38 Fixed cmake
2013-07-30 12:08:48 -04:00

14 lines
199 B
CMake

cmake_minimum_required(VERSION 2.6.0)
project(toxic C)
set(exe_name toxic)
add_executable(${exe_name}
main.c
prompt.c)
target_link_libraries(${exe_name}
curses)
linkCoreLibraries(${exe_name})