summaryrefslogtreecommitdiff
path: root/make.bat
blob: 91a428079c262ddb17a1c41517dc706c64ee95c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
@echo off
if "%_VCVARS%" == "" (
	set "_VCVARS=1"
	vcvarsall x64
)
if "%1" == "" (
	cl /nologo /W4 /wd4706 /wd4996 /wd4100 /Zi /Od /DEBUG /DDEBUG=1 main.c SDL2\lib\x64\SDL2.lib SDL2\lib\x64\SDL2main.lib /Fe:sandbox shell32.lib
)
if "%1" == "release" (
	cl /nologo /W4 /wd4706 /wd4996 /wd4100 /O2 main.c SDL2\lib\x64\SDL2.lib SDL2\lib\x64\SDL2main.lib /Fe:sandbox shell32.lib
)