Skip to content

Commit 88a748a

Browse files
committed
Update tasks.json
1 parent 8dc4f46 commit 88a748a

File tree

1 file changed

+22
-8
lines changed

1 file changed

+22
-8
lines changed

tools/.vscode/tasks.json

+22-8
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"tasks": [
44
{
55
"label": "Validate SQF",
6-
"command": "${config:python.pythonPath}",
6+
"command": "python",
77
"options": {
88
"cwd": "${workspaceFolder}/tools"
99
},
@@ -13,7 +13,7 @@
1313
},
1414
{
1515
"label": "Validate Config",
16-
"command": "${config:python.pythonPath}",
16+
"command": "python",
1717
"options": {
1818
"cwd": "${workspaceFolder}/tools"
1919
},
@@ -23,20 +23,32 @@
2323
},
2424
{
2525
"label": "Check Strings",
26-
"command": "${config:python.pythonPath}",
26+
"command": "python",
2727
"options": {
2828
"cwd": "${workspaceFolder}/tools"
2929
},
3030
"args": [
3131
"check_strings.py"
3232
]
3333
},
34+
{
35+
"label": "SQFVM Checker",
36+
"command": "${config:python.pythonPath}",
37+
"options": {
38+
"cwd": "${workspaceFolder}/tools"
39+
},
40+
"args": [
41+
"sqfvmChecker.py"
42+
],
43+
"problemMatcher": []
44+
},
3445
{
3546
"label": "Test All",
3647
"dependsOn": [
3748
"Validate SQF",
3849
"Validate Config",
39-
"Check Strings"
50+
"Check Strings",
51+
"SQFVM Checker"
4052
],
4153
"group": {
4254
"kind": "test",
@@ -45,26 +57,28 @@
4557
},
4658
{
4759
"label": "Build: make.py (pboProject)",
48-
"command": "${config:python.pythonPath}",
60+
"command": "python",
4961
"options": {
5062
"cwd": "${workspaceFolder}/tools"
5163
},
5264
"args": [
53-
"make.py", "ci"
65+
"make.py",
66+
"ci"
5467
],
5568
"group": {
5669
"kind": "build",
5770
"isDefault": true
5871
}
5972
},
6073
{
61-
"label": "Build: Hemtt Release",
74+
"label": "Build: Hemtt",
6275
"command": "hemtt.exe",
6376
"options": {
6477
"cwd": "${workspaceFolder}"
6578
},
6679
"args": [
67-
"build", "--release", "--ci"
80+
"build",
81+
"-v"
6882
],
6983
"group": "build"
7084
}

0 commit comments

Comments
 (0)