toxcore/testing/toxic/CMakeLists.txt

16 lines
221 B
CMake
Raw Normal View History

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