mirror of
https://github.com/overte-org/overte.git
synced 2025-04-19 15:43:50 +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();
|
||||
|
||||
private:
|
||||
#ifdef Q_OS_WIN
|
||||
const QString _pythonExe{ "python.exe" };
|
||||
#endif
|
||||
#ifdef Q_OS_MACOS
|
||||
const QString _pythonExe{ "python" };
|
||||
#endif
|
||||
|
||||
QString _pythonCommand;
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue