Files
bits-runner-builder/.vscode/tasks.json
2025-07-31 16:56:09 +09:00

19 lines
514 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "Build Bits Runner Builder (Debug)",
"type": "shell",
"command": "cmake -B build && cmake --build build --config Debug",
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "Clean",
"type": "shell",
"command": "rm -rf build *.o *.asm; find ./ -perm +100 -type f -maxdepth 1 -delete"
}
]
}