acid/firmware2/.vscode/tasks.json
Jakub Hlusička 561be96f24 WIP1
2026-01-05 04:16:05 +01:00

36 lines
586 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "rust: cargo build",
"type": "cargo",
"command": "build",
"args": [
"--no-default-features", "--features=probe,info"
],
"problemMatcher": [
"$rustc"
],
"group": {
"kind": "build",
"isDefault": true
},
},
{
"label": "rust: cargo build --release",
"type": "cargo",
"command": "build",
"args": [
"--release", "--no-default-features", "--features=probe,info"
],
"problemMatcher": [
"$rustc"
],
"group": {
"kind": "build",
"isDefault": true
},
}
]
}