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-29 19:42:04 -04:00
set(exe_name toxic)
add_executable(${exe_name}
2013-07-30 11:55:46 -04:00
main.c
prompt.c
2013-07-31 10:20:03 -07:00
friendlist.c
chat.c)
2013-07-29 20:45:53 -04:00
target_link_libraries(${exe_name}
curses)
linkCoreLibraries(${exe_name})