acid/firmware/.vscode/tasks.json

42 lines
712 B
JSON
Raw Normal View History

2026-01-05 04:16:05 +01:00
{
"version": "2.0.0",
"tasks": [
{
"label": "rust: cargo build",
"type": "cargo",
2026-01-31 20:21:40 +01:00
"options": {
"cwd": "${workspaceFolder}/acid-firmware"
},
2026-01-05 04:16:05 +01:00
"command": "build",
"args": [
2026-01-31 20:21:40 +01:00
"--no-default-features", "--features=probe"
2026-01-05 04:16:05 +01:00
],
"problemMatcher": [
"$rustc"
],
"group": {
"kind": "build",
"isDefault": true
},
},
{
"label": "rust: cargo build --release",
"type": "cargo",
2026-01-31 20:21:40 +01:00
"options": {
"cwd": "${workspaceFolder}/acid-firmware"
},
2026-01-05 04:16:05 +01:00
"command": "build",
"args": [
2026-01-31 20:21:40 +01:00
"--release", "--no-default-features", "--features=probe"
2026-01-05 04:16:05 +01:00
],
"problemMatcher": [
"$rustc"
],
"group": {
"kind": "build",
"isDefault": true
},
}
]
}