diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 0fc81a3..99f9dd4 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -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" } ] } \ No newline at end of file