bluepill-rust-blinky/.vscode/tasks.json

20 lines
No EOL
296 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"type": "cargo",
"command": "build",
"options": {
"cwd": "${workspaceFolder}/bluepill-rs"
},
"problemMatcher": [
"$rustc"
],
"group": "build",
"label": "cargo build",
"presentation": {
"reveal": "silent",
}
}
]
}