summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSean Qureshi <stqism@risingstormgames.com>2013-08-18 03:03:46 -0700
committerSean Qureshi <stqism@risingstormgames.com>2013-08-18 03:03:46 -0700
commit86596a6d7f8af0e7b0d0aed0bd43cbe52dd914e2 (patch)
treed4a08d1aabdf1f66b92f742ea735053b26547e39
parent1986e6b7f49b83577bd7d4cdd3efa5c8e40338f4 (diff)
Makes cmake install DHTservers to its new place
-rw-r--r--other/CMakeLists.txt8
1 files changed, 8 insertions, 0 deletions
diff --git a/other/CMakeLists.txt b/other/CMakeLists.txt
index db742e3e..3add1afc 100644
--- a/other/CMakeLists.txt
+++ b/other/CMakeLists.txt
@@ -4,6 +4,14 @@ cmake_policy(SET CMP0011 NEW)
4 4
5include(${CMAKE_CURRENT_SOURCE_DIR}/cmake/DHT_bootstrap.cmake) 5include(${CMAKE_CURRENT_SOURCE_DIR}/cmake/DHT_bootstrap.cmake)
6 6
7if(WIN32)
8#Setup standard file locations for windows
9else()
10 set(HOME "$ENV{HOME}")
11 file(MAKE_DIRECTORY ${HOME}/.tox)
12 file(INSTALL DHTservers DESTINATION ${HOME}/.tox)
13endif()
14
7if(LINUX) 15if(LINUX)
8 add_subdirectory(bootstrap_serverdaemon) 16 add_subdirectory(bootstrap_serverdaemon)
9endif() 17endif()