add debug task that does not regenerate the makefile

This commit is contained in:
Jeffery Myers
2025-12-11 09:52:03 -08:00
parent 31630dded8
commit 75d4e7fc9f
2 changed files with 52 additions and 1 deletions

20
.vscode/tasks.json vendored
View File

@@ -24,6 +24,26 @@
],
"dependsOn":["UpdateMake"]
},
{
"label": "build debug no premake",
"type": "process",
"command": "make",
"windows": {
"command": "mingw32-make.exe",
},
"osx": {
"args": [
"config=debug_arm64"
],
},
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": [
"$gcc"
]
},
{
"label": "build release",
"type": "process",