added new builder task

This commit is contained in:
2021-11-04 09:55:00 +01:00
parent adc470dfab
commit cc2b96ba32
2 changed files with 13 additions and 1 deletions

12
.vscode/tasks.json vendored
View File

@ -3,6 +3,18 @@
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "rust: cargo build",
"type": "shell",
"command": "~/.cargo/bin/cargo", // note: full path to the cargo
"args": [
"build"
],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "rust: cargo build minimal blinky",
"type": "shell",