mirror of
https://github.com/irungentoo/toxcore.git
synced 2024-03-22 13:30:51 +08:00
Merge pull request #16 from grimd34th/tox-bugs
Added username replacer for appdata on c drive
This commit is contained in:
commit
ffb8779182
|
@ -1,12 +1,13 @@
|
|||
cmake_minimum_required(VERSION 2.6.0)
|
||||
|
||||
cmake_policy(SET CMP0011 NEW)
|
||||
SET(USER_NAME $ENV{USERNAME} CACHE STRING UserName)
|
||||
|
||||
include(${CMAKE_CURRENT_SOURCE_DIR}/cmake/DHT_bootstrap.cmake)
|
||||
|
||||
if(WIN32)
|
||||
file(MAKE_DIRECTORY %appdata%/.tox)
|
||||
file(INSTALL DHTservers DESTINATION %appdata%/.tox)
|
||||
file(MAKE_DIRECTORY "C:/Users/${USER_NAME}/AppData/Roaming/.tox")
|
||||
file(INSTALL DHTservers DESTINATION "C:/Users/${USER_NAME}/AppData/Roaming/.tox")
|
||||
else()
|
||||
set(HOME "$ENV{HOME}")
|
||||
if(APPLE)
|
||||
|
|
Loading…
Reference in New Issue
Block a user