Remove SHELL=cmd hacks (#18)

This commit is contained in:
Jeffery Myers
2025-01-18 18:50:34 -08:00
committed by GitHub
2 changed files with 2 additions and 7 deletions

7
.vscode/tasks.json vendored
View File

@@ -9,9 +9,6 @@
"command": "make", "command": "make",
"windows": { "windows": {
"command": "mingw32-make.exe", "command": "mingw32-make.exe",
"args": [
"SHELL=cmd"
],
}, },
"osx": { "osx": {
"args": [ "args": [
@@ -34,7 +31,6 @@
"windows": { "windows": {
"command": "mingw32-make.exe", "command": "mingw32-make.exe",
"args": [ "args": [
"SHELL=cmd",
"config=release_x64" "config=release_x64"
], ],
}, },
@@ -61,7 +57,6 @@
"windows": { "windows": {
"command": "mingw32-make.exe", "command": "mingw32-make.exe",
"args": [ "args": [
"SHELL=cmd",
"clean" "clean"
], ],
}, },
@@ -103,4 +98,4 @@
"group": "build" "group": "build"
} }
] ]
} }

View File

@@ -1,5 +1,5 @@
cd build cd build
premake5.exe gmake2 premake5.exe gmake2
cd .. cd ..
mingw32-make SHELL=CMD clean mingw32-make clean
pause pause