Added cmake file for DHT_bootstrap_daemon

This commit is contained in:
Maxim Biro 2013-07-22 15:28:09 -04:00
parent 164d92e2dd
commit a8a72d09c7
2 changed files with 13 additions and 0 deletions

View File

@ -3,3 +3,7 @@ cmake_minimum_required(VERSION 2.6.0)
cmake_policy(SET CMP0011 NEW)
include(${CMAKE_CURRENT_SOURCE_DIR}/cmake/DHT_bootstrap.cmake)
if(NOT WIN32)
add_subdirectory(bootstrap_serverdaemon)
endif()

View File

@ -0,0 +1,9 @@
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)
linkCoreLibraries(${exe_name})