mirror of
https://github.com/TokTok/c-toxcore
synced 2026-04-25 13:22:11 +00:00
10 lines
175 B
CMake
10 lines
175 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 misc_tools.c)
|
|
|
|
linkCoreLibraries(${exe_name})
|