stm32_serDes_protobuf_project/.vscode/tasks.json

59 lines
959 B
JSON
Raw Normal View History

2024-04-01 15:29:08 +03:00
{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"type": "shell",
"command": "cmake",
"args": [
"--build",
"${workspaceFolder}/build"
],
"problemMatcher": [
"$gcc"
],
"group": {
"kind": "build",
"isDefault": true
},
"dependsOn": [
"generate"
]
},
{
"label": "generate",
"type": "shell",
"command": "cmake",
"args": [
"-S",
".",
"-B",
"build"
],
"problemMatcher": [
"$gcc"
],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "clean",
"type": "shell",
"command": "rm",
"args": [
"-rf",
"${workspaceFolder}/build"
],
"options": {
"cwd": "${workspaceFolder}"
},
"group": {
"kind": "build",
"isDefault": true
}
}
]
}