mirror of
https://github.com/Expand-sys/CCash
synced 2026-03-22 12:37:08 +11:00
🐛 config and user location should be in quotes
This commit is contained in:
parent
0fc044fdda
commit
279481532e
1 changed files with 2 additions and 2 deletions
|
|
@ -38,13 +38,13 @@ target_sources(${PROJECT_NAME} PRIVATE
|
||||||
)
|
)
|
||||||
|
|
||||||
if(DEFINED USER_SAVE_LOC)
|
if(DEFINED USER_SAVE_LOC)
|
||||||
set(USER_SAVE ${USER_SAVE_LOC})
|
set(USER_SAVE "\"" + ${USER_SAVE_LOC} + "\"")
|
||||||
else()
|
else()
|
||||||
set(USER_SAVE "\"users.dat\"")
|
set(USER_SAVE "\"users.dat\"")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if(DEFINED DROGON_CONFIG_LOC)
|
if(DEFINED DROGON_CONFIG_LOC)
|
||||||
set(DROGON_CONFIG ${DROGON_CONFIG_LOC})
|
set(DROGON_CONFIG "\"" + ${DROGON_CONFIG_LOC} + "\"")
|
||||||
else()
|
else()
|
||||||
set(DROGON_CONFIG "\"config.json\"")
|
set(DROGON_CONFIG "\"config.json\"")
|
||||||
endif()
|
endif()
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue