looper/.vscode/tasks.json

20 lines
328 B
JSON
Raw Permalink Normal View History

2024-10-26 09:01:06 -07:00
{
"version": "2.0.0",
"tasks": [
{
"type": "cmake",
"label": "Build",
"command": "build",
"targets": [
"all"
],
"preset": "${command:cmake.activeBuildPresetName}",
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": [],
"detail": "CMake template build task",
}
]
}