diff options
-rw-r--r-- | other/CMakeLists.txt | 8 |
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 | ||
5 | include(${CMAKE_CURRENT_SOURCE_DIR}/cmake/DHT_bootstrap.cmake) | 5 | include(${CMAKE_CURRENT_SOURCE_DIR}/cmake/DHT_bootstrap.cmake) |
6 | 6 | ||
7 | if(WIN32) | ||
8 | #Setup standard file locations for windows | ||
9 | else() | ||
10 | set(HOME "$ENV{HOME}") | ||
11 | file(MAKE_DIRECTORY ${HOME}/.tox) | ||
12 | file(INSTALL DHTservers DESTINATION ${HOME}/.tox) | ||
13 | endif() | ||
14 | |||
7 | if(LINUX) | 15 | if(LINUX) |
8 | add_subdirectory(bootstrap_serverdaemon) | 16 | add_subdirectory(bootstrap_serverdaemon) |
9 | endif() | 17 | endif() |