summaryrefslogtreecommitdiff
path: root/other/bootstrap_serverdaemon/CMakeLists.txt
blob: 57ba484150f2ad6d19cddd9cac308d47edf47b89 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
cmake_minimum_required(VERSION 2.6.0)
project(DHT_bootstrap_daemon C)

set(exe_name DHT_bootstrap_daemon)

add_executable(${exe_name}
	DHT_bootstrap_daemon.c)

target_link_libraries(${exe_name}
	config)

linkCoreLibraries(${exe_name})