Added clean task, fixed build task

This commit is contained in:
Rafał Grodziński
2025-07-31 16:56:09 +09:00
parent da11f522a1
commit 4242600ea0

9
.vscode/tasks.json vendored
View File

@@ -3,12 +3,17 @@
"tasks": [
{
"label": "Build Bits Runner Builder (Debug)",
"type": "cmake",
"command": "build",
"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"
}
]
}