va416xx-rs/vscode/tasks.json

43 lines
1.3 KiB
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 pac",
"type": "shell",
"command": "~/.cargo/bin/cargo", // note: full path to the cargo
"args": [
"build", "-p", "va416xx-hal", "--example", "blinky-pac"
],
"group": {
"kind": "build",
"isDefault": true
}
},
2021-12-31 16:49:15 +01:00
{
"label": "rust: cargo build rtt",
"type": "shell",
"command": "~/.cargo/bin/cargo", // note: full path to the cargo
"args": [
"build", "-p", "va416xx-hal", "--example", "rtt-log"
],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"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
}
},
]
}