summaryrefslogtreecommitdiff
path: root/other/cmake
diff options
context:
space:
mode:
authorMaxim Biro <nurupo.contributions@gmail.com>2013-07-17 18:06:05 -0400
committerMaxim Biro <nurupo.contributions@gmail.com>2013-07-17 18:18:27 -0400
commitef0efd72b51a44d30272dccffdc365165d385291 (patch)
treefd408b402da7a983ea71a1ea4b466f335cd853c0 /other/cmake
parent817ad50d9640b8ccce3636a00f732245ff09d38c (diff)
Improved build system
Diffstat (limited to 'other/cmake')
-rw-r--r--other/cmake/DHT_bootstrap.cmake10
1 files changed, 10 insertions, 0 deletions
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 @@
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})
10addCompilerFlags()