added .vscode files

This commit is contained in:
2021-11-03 01:34:52 +01:00
parent b781e959a8
commit b95119a161
3 changed files with 42 additions and 1 deletions

19
.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,19 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "rust: cargo build minimal blinky",
"type": "shell",
"command": "~/.cargo/bin/cargo", // note: full path to the cargo
"args": [
"build", "-p", "vorago-reb1", "--example", "minimal-blinky",
],
"group": {
"kind": "build",
"isDefault": true
}
},
]
}