va416xx-rs/.vscode/tasks.json
2021-12-07 00:54:20 +01:00

19 lines
552 B
JSON

{
// 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": [
"build", "-p", "va416xx-hal", "--example", "blinky"
],
"group": {
"kind": "build",
"isDefault": true
}
},
]
}