va416xx-rs/.vscode/tasks.json

19 lines
552 B
JSON
Raw Normal View History

{
// 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 led blinky",
"type": "shell",
"command": "~/.cargo/bin/cargo", // note: full path to the cargo
"args": [
2021-12-09 21:33:49 +01:00
"build", "-p", "vorago-peb1", "--example", "blinky"
],
"group": {
"kind": "build",
"isDefault": true
}
},
]
}