summaryrefslogtreecommitdiff
path: root/other/cmake/DHT_bootstrap.cmake
diff options
context:
space:
mode:
authorirungentoo <irungentoo@gmail.com>2013-07-17 15:46:59 -0700
committerirungentoo <irungentoo@gmail.com>2013-07-17 15:46:59 -0700
commite02620c7bed8764421b9b4c258e594369615da39 (patch)
treef37ab9110d076e69b2c05c2b2a8a1659fb951b24 /other/cmake/DHT_bootstrap.cmake
parent817ad50d9640b8ccce3636a00f732245ff09d38c (diff)
parentec38df6f91a51f7ef9b91384b2dc4817047421cd (diff)
Merge pull request #45 from nurupo/master
Improved build system
Diffstat (limited to 'other/cmake/DHT_bootstrap.cmake')
-rw-r--r--other/cmake/DHT_bootstrap.cmake9
1 files changed, 9 insertions, 0 deletions
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})