rtic/.vscode/tasks.json
2020-11-25 23:13:59 +01:00

14 lines
No EOL
272 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"type": "cargo",
"command": "build --example ${fileBasenameNoExtension} --target thumbv7m-none-eabi --features __v7",
"problemMatcher": [
"$rustc"
],
"group": "build",
"label": "cargo build --examples"
}
]
}