Files
bluflame/evoke-64k/evk13-4k/build.cmd
2026-04-18 22:31:51 +02:00

9 lines
366 B
Batchfile

IF [%4]==[W] GOTO :windowed
:fullscreen
cl /c @switches.txt /DASPECT=%1 /DSCREENWIDTH=%2 /DSCREENHEIGHT=%3 main_release.cpp
link @linkparams.txt /out:"final\custom\mirror_%2x%3.exe"
goto :end
:windowed
cl /c @switches.txt /DASPECT=%1 /DSCREENWIDTH=%2 /DSCREENHEIGHT=%3 /DWINDOWED main_release.cpp
link @linkparams.txt /out:"final\custom\mirror_%2x%3_window.exe"
:end