mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 23:40:11 +02:00
Fixed MacOS error.
This commit is contained in:
parent
2b59180fef
commit
1d09f6efef
1 changed files with 1 additions and 1 deletions
|
@ -532,7 +532,7 @@ void TestRunner::parseBuildInformation() {
|
||||||
QString platformOfInterest;
|
QString platformOfInterest;
|
||||||
#ifdef Q_OS_WIN
|
#ifdef Q_OS_WIN
|
||||||
platformOfInterest = "windows";
|
platformOfInterest = "windows";
|
||||||
#elif Q_OS_MAC
|
#elif defined(Q_OS_MAC)
|
||||||
platformOfInterest = "mac";
|
platformOfInterest = "mac";
|
||||||
#endif
|
#endif
|
||||||
QDomElement element = domDocument.documentElement();
|
QDomElement element = domDocument.documentElement();
|
||||||
|
|
Loading…
Reference in a new issue