Files
Tool-Probe-Cnc/.vscode/tasks.json
2025-05-16 19:36:48 +02:00

29 lines
570 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"type": "cmake",
"label": "CMake: build",
"command": "build",
"targets": [
"all"
],
"preset": "${command:cmake.activeBuildPresetName}",
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": [],
"detail": "Build project using CMake Release preset"
},
{
"type": "cmake",
"label": "CMake: flash",
"command": "build",
"preset": "flash",
"group": "none",
"problemMatcher": [],
"detail": "Flash firmware to microcontroller using CMake flash preset"
}
]
}