Files
qyouvideo/.vscode/tasks.json
2025-10-14 10:06:06 +02:00

17 lines
288 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"type": "cmake",
"label": "CMake: build",
"command": "build",
"options": {"cwd": "${workspaceFolder}/build"},
"targets": [
"all"
],
"group": "build",
"problemMatcher": [],
"detail": "CMake template build task"
}
]
}