12 lines
416 B
Batchfile
12 lines
416 B
Batchfile
|
@echo off
|
||
|
|
||
|
set CommonCompilerOptions=/Zi /FC /nologo /DVN_INTERNAL=1 /DVN_SLOW=1 /Oi /W4 /WL /WX /wd4201 /wd4305 /wd4244 /wd4100 /wd4505
|
||
|
|
||
|
pushd "../build/"
|
||
|
|
||
|
REM cl %CommonCompilerOptions% ../code/gen.cpp
|
||
|
REM gen.exe
|
||
|
|
||
|
cl %CommonCompilerOptions% ../code/vn.cpp /LD /link /export:VN_UpdateAndRender /incremental:no
|
||
|
cl %CommonCompilerOptions% ../code/win32_main.cpp /link user32.lib gdi32.lib winmm.lib opengl32.lib
|
||
|
popd
|