This commit is contained in:
Jeffery Myers
2024-08-14 18:01:58 -07:00
parent 3f023baa2f
commit 439b53c74d
3 changed files with 10 additions and 7 deletions
+7 -4
View File
@@ -51,18 +51,21 @@
{
"label": "UpdateMake",
"type": "process",
"command": "./build/premake5",
"command": "./premake5",
"options": {
"cwd": "${workspaceFolder}/build/"
},
"args": [
"gmake2"
],
"windows": {
"command": "./build/premake5.exe"
"command": "./premake5.exe"
},
"linux": {
"command": "./build/premake5"
"command": "./premake5"
},
"osx": {
"command": "./build/premake5.osx"
"command": "./premake5.osx"
},
"group": "build"
}