Skip to content

Commit

Permalink
Update tasks.json
Browse files Browse the repository at this point in the history
  • Loading branch information
PabstMirror committed Aug 17, 2023
1 parent 8dc4f46 commit 88a748a
Showing 1 changed file with 22 additions and 8 deletions.
30 changes: 22 additions & 8 deletions tools/.vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"tasks": [
{
"label": "Validate SQF",
"command": "${config:python.pythonPath}",
"command": "python",
"options": {
"cwd": "${workspaceFolder}/tools"
},
Expand All @@ -13,7 +13,7 @@
},
{
"label": "Validate Config",
"command": "${config:python.pythonPath}",
"command": "python",
"options": {
"cwd": "${workspaceFolder}/tools"
},
Expand All @@ -23,20 +23,32 @@
},
{
"label": "Check Strings",
"command": "${config:python.pythonPath}",
"command": "python",
"options": {
"cwd": "${workspaceFolder}/tools"
},
"args": [
"check_strings.py"
]
},
{
"label": "SQFVM Checker",
"command": "${config:python.pythonPath}",
"options": {
"cwd": "${workspaceFolder}/tools"
},
"args": [
"sqfvmChecker.py"
],
"problemMatcher": []
},
{
"label": "Test All",
"dependsOn": [
"Validate SQF",
"Validate Config",
"Check Strings"
"Check Strings",
"SQFVM Checker"
],
"group": {
"kind": "test",
Expand All @@ -45,26 +57,28 @@
},
{
"label": "Build: make.py (pboProject)",
"command": "${config:python.pythonPath}",
"command": "python",
"options": {
"cwd": "${workspaceFolder}/tools"
},
"args": [
"make.py", "ci"
"make.py",
"ci"
],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "Build: Hemtt Release",
"label": "Build: Hemtt",
"command": "hemtt.exe",
"options": {
"cwd": "${workspaceFolder}"
},
"args": [
"build", "--release", "--ci"
"build",
"-v"
],
"group": "build"
}
Expand Down

0 comments on commit 88a748a

Please sign in to comment.