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

Add install_dependencies_linux_mac to CI

This commit is contained in:
Elias Steurer 2020-10-31 13:50:50 +01:00
parent c347c63bef
commit 612f37c45b

View File

@ -54,11 +54,15 @@ elif platform == "darwin":
cmake_prefix_path = "~/Qt/"
deploy_executable = "macdeployqt"
cmake_target_triplet = "x64-osx"
os.system("chmod +x install_dependencies_linux_mac.sh")
os.system("install_dependencies_linux_mac.sh")
elif platform == "linux":
# Windows...
deploy_executable = "linuxdeployqt"
cmake_prefix_path = "~/Qt/"
cmake_target_triplet = "x64-linux"
os.system("chmod +x install_dependencies_linux_mac.sh")
os.system("install_dependencies_linux_mac.sh")
# REMOVE OLD BUILD FOLDER
cwd = os.getcwd()