va108xx-workspace/.vscode/tasks.json

79 lines
2.4 KiB
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": [
2021-11-04 09:55:00 +01:00
{
"label": "rust: cargo build",
"type": "shell",
"command": "~/.cargo/bin/cargo", // note: full path to the cargo
"args": [
"build"
],
"group": {
"kind": "build",
"isDefault": true
}
},
2021-11-03 01:34:52 +01:00
{
2021-11-07 15:52:42 +01:00
"label": "rust: cargo build led blinky",
2021-11-03 01:34:52 +01:00
"type": "shell",
"command": "~/.cargo/bin/cargo", // note: full path to the cargo
"args": [
2021-11-07 15:52:42 +01:00
"build", "-p", "vorago-reb1", "--example", "blinky-leds",
2021-11-03 01:34:52 +01:00
],
"group": {
"kind": "build",
"isDefault": true
}
},
2021-11-06 19:02:52 +01:00
{
"label": "rust: cargo build hal tests",
"type": "shell",
"command": "~/.cargo/bin/cargo", // note: full path to the cargo
"args": [
"build", "-p", "vorago-reb1", "--example", "tests",
],
"group": {
"kind": "build",
"isDefault": true
}
},
2021-11-06 21:07:51 +01:00
{
"label": "rust: cargo build rtt",
"type": "shell",
"command": "~/.cargo/bin/cargo", // note: full path to the cargo
"args": [
2021-11-07 14:25:15 +01:00
"build", "-p", "vorago-reb1", "--example", "rtt-log",
],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "rust: cargo build button blinky",
"type": "shell",
"command": "~/.cargo/bin/cargo", // note: full path to the cargo
"args": [
"build", "-p", "vorago-reb1", "--example", "blinky-button-irq",
],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "rust: cargo build systick",
"type": "shell",
"command": "~/.cargo/bin/cargo", // note: full path to the cargo
"args": [
"build", "-p", "vorago-reb1", "--example", "timer-ticks-pac",
2021-11-06 21:07:51 +01:00
],
"group": {
"kind": "build",
"isDefault": true
}
},
2021-11-03 01:34:52 +01:00
]
}