Files
roborob/SW/spu/.vscode/tasks.json
2026-04-18 13:26:59 +02:00

44 lines
1.1 KiB
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "Configure blinky stm32f030",
"type": "shell",
"command": "cmake",
"args": [
"-S",
"${workspaceFolder}/app/blinky/stm32f030",
"-B",
"${workspaceFolder}/app/blinky/stm32f030/build",
"-DCMAKE_BUILD_TYPE=Debug"
],
"options": {
"cwd": "${workspaceFolder}"
},
"problemMatcher": []
},
{
"label": "Build blinky stm32f030",
"type": "shell",
"command": "cmake",
"args": [
"--build",
"${workspaceFolder}/app/blinky/stm32f030/build"
],
"options": {
"cwd": "${workspaceFolder}"
},
"dependsOn": [
"Configure blinky stm32f030"
],
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": [
"$gcc"
]
}
]
}