removed CL builds
This commit is contained in:
parent
ea37ceb3bd
commit
d916c86995
4 changed files with 5 additions and 27 deletions
|
@ -1,9 +1,11 @@
|
||||||
@echo off
|
@echo off
|
||||||
rmdir /S /Q build
|
if exist build (
|
||||||
|
rmdir /s /q build
|
||||||
|
)
|
||||||
mkdir build
|
mkdir build
|
||||||
|
|
||||||
pushd build
|
pushd build
|
||||||
|
|
||||||
cl.exe /Fe:cgame.exe ..\build.c /Od /std:c11 /W4 /wd4273 /wd4018 /wd4100 /Zi gdi32.lib user32.lib opengl32.lib
|
clang -g -o cgame.exe ../build.c -O0 -std=c11 -Wextra -Wno-incompatible-library-redeclaration -Wno-sign-compare -Wno-unused-parameter -Wno-builtin-requires-header -lgdi32 -luser32 -lwinmm -ld3d11 -ldxguid -ld3dcompiler
|
||||||
|
|
||||||
popd
|
popd
|
|
@ -1,11 +0,0 @@
|
||||||
@echo off
|
|
||||||
if exist build (
|
|
||||||
rmdir /s /q build
|
|
||||||
)
|
|
||||||
mkdir build
|
|
||||||
|
|
||||||
pushd build
|
|
||||||
|
|
||||||
clang -g -o cgame.exe ../build.c -O0 -std=c11 -Wextra -Wno-incompatible-library-redeclaration -Wno-sign-compare -Wno-unused-parameter -Wno-builtin-requires-header -lgdi32 -luser32 -lwinmm -ld3d11 -ldxguid -ld3dcompiler
|
|
||||||
|
|
||||||
popd
|
|
|
@ -7,7 +7,7 @@ pushd build
|
||||||
mkdir release
|
mkdir release
|
||||||
pushd release
|
pushd release
|
||||||
|
|
||||||
cl.exe /Fe:cgame.exe ..\..\build.c /Ox /std:c11 /W4 /wd4273 /wd4018 /wd4100 gdi32.lib user32.lib opengl32.lib
|
clang -o cgame.exe ../../build.c -Ofast -std=c11 -Wextra -Wno-incompatible-library-redeclaration -Wno-sign-compare -Wno-unused-parameter -Wno-builtin-requires-header -lgdi32 -luser32 -lwinmm -ld3d11 -ldxguid -ld3dcompiler
|
||||||
|
|
||||||
popd
|
popd
|
||||||
popd
|
popd
|
|
@ -1,13 +0,0 @@
|
||||||
@echo off
|
|
||||||
rmdir /S /Q build
|
|
||||||
mkdir build
|
|
||||||
|
|
||||||
pushd build
|
|
||||||
|
|
||||||
mkdir release
|
|
||||||
pushd release
|
|
||||||
|
|
||||||
clang -o cgame.exe ../../build.c -Ofast -std=c11 -Wextra -Wno-incompatible-library-redeclaration -Wno-sign-compare -Wno-unused-parameter -Wno-builtin-requires-header -lgdi32 -luser32 -lwinmm -ld3d11 -ldxguid -ld3dcompiler
|
|
||||||
|
|
||||||
popd
|
|
||||||
popd
|
|
Reference in a new issue