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