blob: e2b164babdb58373ff9eb03f8834f55c01d1ae7a (
plain)
1
2
3
4
5
6
7
8
9
|
cmake_minimum_required(VERSION 2.6.0)
project(DHT_bootstrap C)
set(exe_name DHT_bootstrap)
add_executable(${exe_name}
DHT_bootstrap.c ../testing/misc_tools.c)
linkCoreLibraries(${exe_name})
|