9 lines
374 B
Batchfile
9 lines
374 B
Batchfile
IF [%4]==[W] GOTO :windowed
|
|
:fullscreen
|
|
cl /c @switches.txt /DASPECT=%1 /DSCREENWIDTH=%2 /DSCREENHEIGHT=%3 main_release.cpp
|
|
crinkler @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
|
|
crinkler @linkparams.txt /out:"final\custom\mirror_%2x%3_window.exe"
|
|
:end |