cur_stim/.vscode/taks.json
2024-05-01 16:44:51 -04:00

26 lines
351 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"type": "cargo",
"command": "build",
"args": [
"--bin",
"u5_example",
"--features",
"stm32u575zi"
],
"problemMatcher": [
"$rustc"
],
"group": "build",
"label": "rust: cargo build with feature",
"options": {
"env": {
"DEFMT_LOG": "info"
}
}
}
]
}