1
0
mirror of https://github.com/Tha14/toxic.git synced 2024-07-06 03:37:55 +02:00
toxic/CMakeLists.txt
2013-08-08 16:00:12 +02:00

17 lines
234 B
CMake

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