added bat make file for win32 demo

This commit is contained in:
vurtun 2015-06-22 12:47:21 +02:00
parent aec01fbc30
commit cd0691b66d
1 changed files with 5 additions and 0 deletions

5
make.bat Normal file
View File

@ -0,0 +1,5 @@
@echo off
IF NOT EXIST bin mkdir bin
pushd bin
CL ..\demo\win32.c /Fegui /GS /analyze- /W4 /ZI /Gm /Od /Gd /MDd /EHa- /GA /FC /Oi /GR- /Gm- /EHsc /nologo /wd4127 /wd4201 /wd4189 /wd4100 /wd4505 /D_CRT_SECURE_NO_WARNINGS /link /DEBUG /MACHINE:X86 /INCREMENTAL /SUBSYSTEM:WINDOWS /DYNAMICBASE "kernel32.lib" "user32.lib" "gdi32.lib"
popd