add a clean task to vscode

This commit is contained in:
Jeff Myers
2024-09-20 16:02:27 -07:00
parent 3f9ed218fb
commit 1154181dea

28
.vscode/tasks.json vendored
View File

@@ -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",