summaryrefslogtreecommitdiff
path: root/other
diff options
context:
space:
mode:
Diffstat (limited to 'other')
-rw-r--r--other/CMakeLists.txt1
-rw-r--r--other/cmake/DHT_bootstrap.cmake9
2 files changed, 10 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..c3c313ae
--- /dev/null
+++ b/other/cmake/DHT_bootstrap.cmake
@@ -0,0 +1,9 @@
1cmake_minimum_required(VERSION 2.6.0)
2project(DHT_bootstrap C)
3
4set(exe_name DHT_bootstrap)
5
6add_executable(${exe_name}
7 DHT_bootstrap.c)
8
9linkCoreLibraries(${exe_name})