Skip to content

Commit 2c887df

Browse files
VSCode: Add tasks.json with default build command. (#69)
1 parent 5b3d334 commit 2c887df

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

.vscode/tasks.json

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
{
2+
"version": "2.0.0",
3+
"presentation": {
4+
"reveal": "always",
5+
"panel": "dedicated"
6+
},
7+
"tasks": [
8+
{
9+
"type": "shell",
10+
"label": "CODAL build",
11+
"command": "python build.py",
12+
"windows": {
13+
"command": "py build.py"
14+
},
15+
"group": {
16+
"kind": "build",
17+
"isDefault": true
18+
}
19+
},
20+
{
21+
"type": "shell",
22+
"label": "CODAL clean build",
23+
"command": "python build.py --clean",
24+
"windows": {
25+
"command": "py build.py --clean"
26+
},
27+
"group": {
28+
"kind": "build",
29+
"isDefault": false
30+
}
31+
}
32+
]
33+
}

0 commit comments

Comments
 (0)