rtic/.vscode/tasks.json

14 lines
272 B
JSON
Raw Normal View History

2020-11-25 22:56:58 +01:00
{
"version": "2.0.0",
"tasks": [
{
"type": "cargo",
2020-11-25 23:13:59 +01:00
"command": "build --example ${fileBasenameNoExtension} --target thumbv7m-none-eabi --features __v7",
2020-11-25 22:56:58 +01:00
"problemMatcher": [
"$rustc"
],
"group": "build",
"label": "cargo build --examples"
}
]
}