mirror of
https://github.com/irungentoo/toxcore.git
synced 2024-03-22 13:30:51 +08:00
13 lines
201 B
CMake
13 lines
201 B
CMake
cmake_minimum_required(VERSION 2.6.0)
|
|
project(nTox C)
|
|
|
|
set(exe_name nTox)
|
|
|
|
add_executable(${exe_name}
|
|
nTox.c misc_tools.c)
|
|
|
|
target_link_libraries(${exe_name}
|
|
ncurses)
|
|
|
|
linkCoreLibraries(${exe_name})
|