1
0
mirror of https://github.com/Tha14/toxic.git synced 2024-07-03 18:57:45 +02:00
toxic/CMakeLists.txt

16 lines
221 B
CMake
Raw Normal View History

2013-07-30 02:45:53 +02:00
cmake_minimum_required(VERSION 2.6.0)
project(toxic C)
set(exe_name toxic)
add_executable(${exe_name}
2013-07-30 17:55:46 +02:00
main.c
prompt.c
2013-07-31 19:20:03 +02:00
friendlist.c
chat.c)
2013-07-30 02:45:53 +02:00
target_link_libraries(${exe_name}
curses)
linkCoreLibraries(${exe_name})