diff options
Diffstat (limited to 'other/bootstrap_serverdaemon')
-rw-r--r-- | other/bootstrap_serverdaemon/CMakeLists.txt | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/other/bootstrap_serverdaemon/CMakeLists.txt b/other/bootstrap_serverdaemon/CMakeLists.txt index f675396d..512179f3 100644 --- a/other/bootstrap_serverdaemon/CMakeLists.txt +++ b/other/bootstrap_serverdaemon/CMakeLists.txt | |||
@@ -3,11 +3,15 @@ project(DHT_bootstrap_daemon C) | |||
3 | 3 | ||
4 | set(exe_name DHT_bootstrap_daemon) | 4 | set(exe_name DHT_bootstrap_daemon) |
5 | 5 | ||
6 | find_package(LIBCONFIG REQUIRED) | ||
7 | |||
8 | include_directories(${LIBCONFIG_INCLUDE_DIR}) | ||
9 | |||
6 | add_executable(${exe_name} | 10 | add_executable(${exe_name} |
7 | DHT_bootstrap_daemon.c) | 11 | DHT_bootstrap_daemon.c) |
8 | 12 | ||
9 | target_link_libraries(${exe_name} | 13 | target_link_libraries(${exe_name} |
10 | config) | 14 | ${LIBCONFIG_LIBRARY}) |
11 | 15 | ||
12 | linkCoreLibraries(${exe_name}) | 16 | linkCoreLibraries(${exe_name}) |
13 | 17 | ||