toxcore/testing/toxic/CMakeLists.txt

14 lines
211 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 08:45:53 +08:00
toxic/main.c
toxic/prompt.c)
target_link_libraries(${exe_name}
curses)
linkCoreLibraries(${exe_name})