1
0
mirror of https://gitlab.com/kelteseth/ScreenPlay.git synced 2024-11-22 18:52:30 +01:00

Fix osx build.py args

This commit is contained in:
Elias Steurer 2023-02-03 11:48:26 +01:00
parent d07f3db58e
commit 0d8d0cef58

33
.vscode/tasks.json vendored
View File

@ -17,7 +17,9 @@
"type": "process", "type": "process",
"label": "Format Cpp files", "label": "Format Cpp files",
"command": "python3", "command": "python3",
"windows": { "command": "python" }, "windows": {
"command": "python"
},
"group": { "group": {
"kind": "build", "kind": "build",
"isDefault": true "isDefault": true
@ -33,7 +35,9 @@
"type": "process", "type": "process",
"label": "Format CMake files", "label": "Format CMake files",
"command": "python3", "command": "python3",
"windows": { "command": "python" }, "windows": {
"command": "python"
},
"group": { "group": {
"kind": "build", "kind": "build",
"isDefault": true "isDefault": true
@ -49,7 +53,9 @@
"type": "process", "type": "process",
"label": "Format Qml files", "label": "Format Qml files",
"command": "python3", "command": "python3",
"windows": { "command": "python" }, "windows": {
"command": "python"
},
"group": { "group": {
"kind": "build", "kind": "build",
"isDefault": true "isDefault": true
@ -65,7 +71,9 @@
"type": "process", "type": "process",
"label": "Run setup.py", "label": "Run setup.py",
"command": "python3", "command": "python3",
"windows": { "command": "python" }, "windows": {
"command": "python"
},
"group": { "group": {
"kind": "build", "kind": "build",
"isDefault": true "isDefault": true
@ -81,7 +89,9 @@
"type": "process", "type": "process",
"label": "Export ScreenPlay release, with deploy and steam enabled", "label": "Export ScreenPlay release, with deploy and steam enabled",
"command": "python3", "command": "python3",
"windows": { "command": "python" }, "windows": {
"command": "python"
},
"group": { "group": {
"kind": "build", "kind": "build",
"isDefault": true "isDefault": true
@ -89,6 +99,15 @@
"options": { "options": {
"cwd": "${workspaceFolder}/Tools" "cwd": "${workspaceFolder}/Tools"
}, },
"osx": {
"args": [
"build.py",
"-type=release",
"-deploy-version",
"-steam",
"-architecture=arm64"
]
},
"args": [ "args": [
"build.py", "build.py",
"-type=release", "-type=release",
@ -100,7 +119,9 @@
"type": "process", "type": "process",
"label": "Update Qt *.ts translations", "label": "Update Qt *.ts translations",
"command": "python3", "command": "python3",
"windows": { "command": "python" }, "windows": {
"command": "python"
},
"group": { "group": {
"kind": "build", "kind": "build",
"isDefault": true "isDefault": true