diff options
Diffstat (limited to 'other')
-rw-r--r-- | other/CMakeLists.txt | 1 | ||||
-rw-r--r-- | other/cmake/DHT_bootstrap.cmake | 10 |
2 files changed, 11 insertions, 0 deletions
diff --git a/other/CMakeLists.txt b/other/CMakeLists.txt new file mode 100644 index 00000000..22dc8e25 --- /dev/null +++ b/other/CMakeLists.txt | |||
@@ -0,0 +1 @@ | |||
include(${CMAKE_CURRENT_SOURCE_DIR}/cmake/DHT_bootstrap.cmake) | |||
diff --git a/other/cmake/DHT_bootstrap.cmake b/other/cmake/DHT_bootstrap.cmake new file mode 100644 index 00000000..f978baa4 --- /dev/null +++ b/other/cmake/DHT_bootstrap.cmake | |||
@@ -0,0 +1,10 @@ | |||
1 | cmake_minimum_required(VERSION 2.6.0) | ||
2 | project(DHT_bootstrap C) | ||
3 | |||
4 | set(exe_name DHT_bootstrap) | ||
5 | |||
6 | add_executable(${exe_name} | ||
7 | DHT_bootstrap.c) | ||
8 | |||
9 | linkCoreLibraries(${exe_name}) | ||
10 | addCompilerFlags() | ||