nucleo-l053r8-benches/.vscode/tasks.json
2025-07-14 15:48:26 +02:00

25 lines
No EOL
592 B
JSON
Executable file

{
"version": "2.0.0",
"tasks": [
{
"label": "cargo run",
"type": "shell",
"command": "cargo arun",
"problemMatcher": [
"$rustc"
],
},
{
"label": "cargo build",
"type": "shell",
"command": "cargo build --target thumbv6m-none-eabi",
"problemMatcher": [
"$rustc"
],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}