mirror of
https://github.com/overte-org/overte.git
synced 2025-08-08 13:58:51 +02:00
Corrected Linux compilation error.
This commit is contained in:
parent
f4f1ac8f02
commit
48fabf51f2
1 changed files with 2 additions and 3 deletions
|
@ -332,12 +332,11 @@ void TestRunner::verifyInstallationSucceeded() {
|
||||||
}
|
}
|
||||||
|
|
||||||
void TestRunner::saveExistingHighFidelityAppDataFolder() {
|
void TestRunner::saveExistingHighFidelityAppDataFolder() {
|
||||||
#ifdef Q_OS_WIN
|
|
||||||
QString dataDirectory{ "NOT FOUND" };
|
QString dataDirectory{ "NOT FOUND" };
|
||||||
|
#ifdef Q_OS_WIN
|
||||||
dataDirectory = qgetenv("USERPROFILE") + "\\AppData\\Roaming";
|
dataDirectory = qgetenv("USERPROFILE") + "\\AppData\\Roaming";
|
||||||
#elif defined Q_OS_MAC
|
#elif defined Q_OS_MAC
|
||||||
QString dataDirectory{ QDir::homePath() + "/Library/Application Support" };
|
dataDirectory{ QDir::homePath() + "/Library/Application Support" };
|
||||||
#endif
|
#endif
|
||||||
if (_runLatest->isChecked()) {
|
if (_runLatest->isChecked()) {
|
||||||
_appDataFolder = dataDirectory + "/High Fidelity";
|
_appDataFolder = dataDirectory + "/High Fidelity";
|
||||||
|
|
Loading…
Reference in a new issue