mirror of
https://github.com/overte-org/overte.git
synced 2025-08-08 14:18:24 +02:00
Python executable for MAC is python
This commit is contained in:
parent
936c3beea0
commit
34a03bfc99
1 changed files with 6 additions and 0 deletions
|
@ -19,7 +19,13 @@ public:
|
||||||
QString getPythonCommand();
|
QString getPythonCommand();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
#ifdef Q_OS_WIN
|
||||||
const QString _pythonExe{ "python.exe" };
|
const QString _pythonExe{ "python.exe" };
|
||||||
|
#endif
|
||||||
|
#ifdef Q_OS_MACOS
|
||||||
|
const QString _pythonExe{ "python" };
|
||||||
|
#endif
|
||||||
|
|
||||||
QString _pythonCommand;
|
QString _pythonCommand;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue