From 1154181dea3c447971fa0f51c17a54783fe43470 Mon Sep 17 00:00:00 2001 From: Jeff Myers Date: Fri, 20 Sep 2024 16:02:27 -0700 Subject: [PATCH] add a clean task to vscode --- .vscode/tasks.json | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 4e1a562..f842d09 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -40,6 +40,34 @@ }, "osx": { "args": [ + "config=release_ARM64" + ], + }, + "group": "build", + "problemMatcher": [ + "$gcc" + ], + "dependsOn":["UpdateMake"] + }, + { + "label": "Clean", + "type": "process", + "command": "make", + "windows": { + "command": "mingw32-make.exe", + "args": [ + "SHELL=cmd", + "clean" + ], + }, + "linux": { + "args": [ + "clean" + ], + }, + "osx": { + "args": [ + "clean" ], }, "group": "build",