Makes cmake install DHTservers to its new place

This commit is contained in:
Sean Qureshi 2013-08-18 03:03:46 -07:00
parent 1986e6b7f4
commit 86596a6d7f

View File

@ -4,6 +4,14 @@ cmake_policy(SET CMP0011 NEW)
include(${CMAKE_CURRENT_SOURCE_DIR}/cmake/DHT_bootstrap.cmake)
if(WIN32)
#Setup standard file locations for windows
else()
set(HOME "$ENV{HOME}")
file(MAKE_DIRECTORY ${HOME}/.tox)
file(INSTALL DHTservers DESTINATION ${HOME}/.tox)
endif()
if(LINUX)
add_subdirectory(bootstrap_serverdaemon)
endif()