va108xx-rs/.vscode/tasks.json

31 lines
899 B
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
{
"label": "rust: cargo build minimal blinky",
"type": "shell",
"command": "~/.cargo/bin/cargo", // note: full path to the cargo
"args": [
"build", "-p", "vorago-reb1", "--example", "minimal-blinky",
],
"group": {
"kind": "build",
"isDefault": true
}
},
]
}