mirror of
https://github.com/TokTok/c-toxcore
synced 2026-05-03 07:36:17 +00:00
11 lines
169 B
CMake
11 lines
169 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})
|