Skip to content

Commit

Permalink
VSCode: Add tasks.json with default build command. (#69)
Browse files Browse the repository at this point in the history
  • Loading branch information
microbit-carlos committed Jul 13, 2023
1 parent 5b3d334 commit 2c887df
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
"version": "2.0.0",
"presentation": {
"reveal": "always",
"panel": "dedicated"
},
"tasks": [
{
"type": "shell",
"label": "CODAL build",
"command": "python build.py",
"windows": {
"command": "py build.py"
},
"group": {
"kind": "build",
"isDefault": true
}
},
{
"type": "shell",
"label": "CODAL clean build",
"command": "python build.py --clean",
"windows": {
"command": "py build.py --clean"
},
"group": {
"kind": "build",
"isDefault": false
}
}
]
}

0 comments on commit 2c887df

Please sign in to comment.