1
0
mirror of https://gitlab.com/kelteseth/ScreenPlay.git synced 2024-09-18 08:22:33 +02:00
ScreenPlay/Tools/defines.py

26 lines
747 B
Python
Raw Normal View History

2023-01-19 10:33:49 +01:00
#!/usr/bin/python3
# SPDX-License-Identifier: LicenseRef-EliasSteurerTachiom OR AGPL-3.0-only
import sys
from pathlib import Path
2022-11-02 12:15:34 +01:00
from sys import stdout
2022-11-02 12:15:34 +01:00
stdout.reconfigure(encoding='utf-8')
2022-11-11 12:19:13 +01:00
VCPKG_VERSION = "2871ddd" # Master 11.11.2022
QT_VERSION = "6.4.2" if sys.platform != "darwin" else "6.3.2"
2022-11-11 12:19:13 +01:00
QT_IFW_VERSION = "4.5"
2023-01-07 12:47:15 +01:00
SCREENPLAY_VERSION = "0.15.0-RC4"
QT_PATH = Path.cwd().parent.parent.joinpath("aqt")
2022-11-11 13:09:16 +01:00
# Defined by Qt
if sys.platform == "win32":
OS = "windows"
QT_PLATFORM = "msvc2019_64"
elif sys.platform == "darwin":
OS = "mac"
QT_PLATFORM = "macos"
2022-11-11 13:09:16 +01:00
elif sys.platform == "linux":
OS = "linux"
QT_PLATFORM = "gcc_64"
2022-10-14 11:54:00 +02:00
PYTHON_EXECUTABLE = "python" if sys.platform == "win32" else "python3"
2022-11-02 12:15:34 +01:00
FFMPEG_VERSION = "5.0.1"