1
0
mirror of https://gitlab.com/kelteseth/ScreenPlay.git synced 2024-09-14 22:42:34 +02:00

Fix macOS qt path not using compiler name

This commit is contained in:
Elias Steurer 2022-11-12 14:12:34 +01:00
parent 07ffd812b1
commit 7a6af59621

View File

@ -16,7 +16,7 @@ if sys.platform == "win32":
QT_PLATFORM = "msvc2019_64"
elif sys.platform == "darwin":
OS = "mac"
QT_PLATFORM = "clang_64"
QT_PLATFORM = "macos"
elif sys.platform == "linux":
OS = "linux"
QT_PLATFORM = "gcc_64"