mirror of
https://gitlab.com/kelteseth/ScreenPlay.git
synced 2024-11-06 19:12:30 +01:00
287730e9c7
For this we now use a custom triplet. This has some drawbacks like openssl does not work with this config. Luckily we can use openssl that is provided by Qt. On macOS they use Secure Transport.
31 lines
938 B
Python
31 lines
938 B
Python
#!/usr/bin/python3
|
|
# SPDX-License-Identifier: LicenseRef-EliasSteurerTachiom OR AGPL-3.0-only
|
|
import sys
|
|
from pathlib import Path
|
|
from sys import stdout
|
|
import os
|
|
|
|
stdout.reconfigure(encoding='utf-8')
|
|
|
|
# Defined by Qt
|
|
if sys.platform == "win32":
|
|
OS = "windows"
|
|
QT_PLATFORM = "msvc2019_64"
|
|
elif sys.platform == "darwin":
|
|
OS = "mac"
|
|
QT_PLATFORM = "macos"
|
|
elif sys.platform == "linux":
|
|
OS = "linux"
|
|
QT_PLATFORM = "gcc_64"
|
|
|
|
SCREENPLAY_VERSION = "0.15.0-RC6"
|
|
QT_PATH = path = Path(os.path.join(os.path.realpath(__file__), "../../../aqt")).resolve()
|
|
QT_VERSION = "6.5.1"
|
|
QT_BIN_PATH = QT_PATH.joinpath(f"{QT_VERSION}/{QT_PLATFORM}/bin")
|
|
QT_TOOLS_PATH = QT_PATH.joinpath("Tools/")
|
|
QT_IFW_VERSION = "4.5"
|
|
# 02.06.2023 https://gitlab.com/kelteseth/screenplay-vcpkg :
|
|
VCPKG_VERSION = "e9e5a6fa2e23bc4928fd6281f0cbd66f58d89209"
|
|
PYTHON_EXECUTABLE = "python" if sys.platform == "win32" else "python3"
|
|
FFMPEG_VERSION = "5.0.1"
|