added new builder task

This commit is contained in:
Robin Müller 2021-11-04 09:55:00 +01:00
parent adc470dfab
commit cc2b96ba32
No known key found for this signature in database
GPG Key ID: 71B58F8A3CDFA9AC
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",

@ -1 +1 @@
Subproject commit 4be67161eab3e845dc7cb117fe039c3ba2964786
Subproject commit b2d9cbe4237353e2de7c86cef2b8e5c6eeb3ebb5