From e8b8dfebb3fce4a7e2dc6cb362351dd0a21c2af4 Mon Sep 17 00:00:00 2001 From: loadletter Date: Sun, 18 Aug 2013 23:20:34 +0200 Subject: Modified cmakefile to move the serverlist to the proper directory. Tested on GNU/Linux. --- other/CMakeLists.txt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'other/CMakeLists.txt') diff --git a/other/CMakeLists.txt b/other/CMakeLists.txt index eaf677ed..871a9e92 100644 --- a/other/CMakeLists.txt +++ b/other/CMakeLists.txt @@ -6,16 +6,16 @@ SET(USER_NAME $ENV{USERNAME} CACHE STRING UserName) include(${CMAKE_CURRENT_SOURCE_DIR}/cmake/DHT_bootstrap.cmake) if(WIN32) - file(MAKE_DIRECTORY "C:/Users/${USER_NAME}/AppData/Roaming/.tox") - file(INSTALL DHTservers DESTINATION "C:/Users/${USER_NAME}/AppData/Roaming/.tox") + file(MAKE_DIRECTORY "C:/Users/${USER_NAME}/AppData/Roaming/.config/tox") + file(INSTALL DHTservers DESTINATION "C:/Users/${USER_NAME}/AppData/Roaming/.config/tox") else() set(HOME "$ENV{HOME}") if(APPLE) - file(MAKE_DIRECTORY ${HOME}/Library/Application\ Support/.tox) - file(INSTALL DHTservers DESTINATION ${HOME}/Library/Application\ Support/.tox) + file(MAKE_DIRECTORY ${HOME}/Library/Application\ Support/.config/tox) + file(INSTALL DHTservers DESTINATION ${HOME}/Library/Application\ Support/.config/tox) else() - file(MAKE_DIRECTORY ${HOME}/.tox) - file(INSTALL DHTservers DESTINATION ${HOME}/.tox) + file(MAKE_DIRECTORY ${HOME}/.config/tox) + file(INSTALL DHTservers DESTINATION ${HOME}/.config/tox) endif() endif() -- cgit v1.2.3