1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-06-27 16:36:03 +00:00

Only lowercase project name at compile time

This commit is contained in:
ShadowNinja 2015-04-21 11:09:44 -04:00
parent e0eec201a1
commit 3be9787e64
4 changed files with 11 additions and 11 deletions

View file

@ -478,11 +478,11 @@ bool setSystemPaths()
// Use ".\bin\.."
path_share = std::string(buf) + "\\..";
// Use "C:\Documents and Settings\user\Application Data\<PROJECT_NAME>"
// Use "C:\Documents and Settings\user\Application Data\<PROJECT_NAME_LOWER>"
DWORD len = GetEnvironmentVariable("APPDATA", buf, sizeof(buf));
FATAL_ERROR_IF(len == 0 || len > sizeof(buf), "Failed to get APPDATA");
path_user = std::string(buf) + DIR_DELIM + lowercase(PROJECT_NAME);
path_user = std::string(buf) + DIR_DELIM PROJECT_NAME_LOWER;
return true;
}
@ -514,7 +514,7 @@ bool setSystemPaths()
trylist.push_back(static_sharedir);
trylist.push_back(bindir + DIR_DELIM ".." DIR_DELIM "share"
DIR_DELIM + lowercase(PROJECT_NAME));
DIR_DELIM PROJECT_NAME_LOWER);
trylist.push_back(bindir + DIR_DELIM "..");
#ifdef __ANDROID__
@ -543,7 +543,7 @@ bool setSystemPaths()
#ifndef __ANDROID__
path_user = std::string(getenv("HOME")) + DIR_DELIM "."
+ lowercase(PROJECT_NAME);
PROJECT_NAME_LOWER;
#endif
return true;
@ -566,9 +566,8 @@ bool setSystemPaths()
}
CFRelease(resources_url);
path_user = std::string(getenv("HOME"))
+ "/Library/Application Support/"
+ lowercase(PROJECT_NAME);
path_user = std::string(getenv("HOME")) +
"/Library/Application Support/" PROJECT_NAME_LOWER;
return true;
}
@ -579,7 +578,7 @@ bool setSystemPaths()
{
path_share = STATIC_SHAREDIR;
path_user = std::string(getenv("HOME")) + DIR_DELIM "."
+ lowercase(PROJECT_NAME);
PROJECT_NAME_LOWER;
return true;
}