From 4242600ea0fbe8fc389028464b843b8219ab22b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafa=C5=82=20Grodzi=C5=84ski?= Date: Thu, 31 Jul 2025 16:56:09 +0900 Subject: [PATCH] Added clean task, fixed build task --- .vscode/tasks.json | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) 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