va108xx-workspace/.vscode/tasks.json

19 lines
565 B
JSON
Raw Normal View History

2021-11-03 01:34:52 +01:00
{
// 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
}
},
]
}