Files
bits-runner-builder/.vscode/tasks.json
Rafał Grodziński a1bb97a597 Added cmake
2025-06-21 00:03:35 +09:00

23 lines
556 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "Build Bits Runner Builder",
"type": "shell",
"command": "cmake --build build",
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "Clean built product",
"type": "shell",
"command": "cmake --build build --target clean",
"group": {
"kind": "none",
"isDefault": false
}
}
]
}