mirror of
https://github.com/irungentoo/toxcore.git
synced 2024-03-22 13:30:51 +08:00
Added cmake file for DHT_bootstrap_daemon
This commit is contained in:
parent
164d92e2dd
commit
a8a72d09c7
|
@ -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()
|
||||
|
|
9
other/bootstrap_serverdaemon/CMakeLists.txt
Normal file
9
other/bootstrap_serverdaemon/CMakeLists.txt
Normal 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})
|
Loading…
Reference in New Issue
Block a user