va416xx-rs/vscode/tasks.json

55 lines
1.5 KiB
JSON
Raw Normal View History

2021-12-07 00:31:51 +01:00
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "blinky-pac-example",
"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
}
},
{
"label": "rtt-log-example",
"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": "blinky-example",
"type": "shell",
"command": "~/.cargo/bin/cargo", // note: full path to the cargo
"args": [
"build",
"-p",
"va416xx-hal",
"--example",
"blinky"
],
"group": {
"kind": "build",
"isDefault": true
}
},
]
}