toxcore/testing/cmake/nTox.cmake

13 lines
214 B
CMake
Raw Normal View History

2013-07-18 06:06:05 +08:00
cmake_minimum_required(VERSION 2.6.0)
project(nTox C)
set(exe_name nTox)
add_executable(${exe_name}
nTox.c)
target_link_libraries(${exe_name} ncurses)
linkCoreLibraries(${exe_name})
addCompilerFlags()