🐛 config and user location should be in quotes

This commit is contained in:
William 2022-11-20 13:04:22 -08:00 committed by GitHub
parent 0fc044fdda
commit 279481532e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -38,13 +38,13 @@ target_sources(${PROJECT_NAME} PRIVATE
)
if(DEFINED USER_SAVE_LOC)
set(USER_SAVE ${USER_SAVE_LOC})
set(USER_SAVE "\"" + ${USER_SAVE_LOC} + "\"")
else()
set(USER_SAVE "\"users.dat\"")
endif()
if(DEFINED DROGON_CONFIG_LOC)
set(DROGON_CONFIG ${DROGON_CONFIG_LOC})
set(DROGON_CONFIG "\"" + ${DROGON_CONFIG_LOC} + "\"")
else()
set(DROGON_CONFIG "\"config.json\"")
endif()