2016-04-22 02:23:32 +00:00
|
|
|
@echo off
|
|
|
|
|
|
|
|
set OPTS=/W4 /wd4310 /wd4100 /wd4201 /wd4505 /wd4996 /wd4127 /wd4510 /wd4512 /wd4610 /wd4390 /WX
|
|
|
|
set OPTS=%OPTS% /GR- /EHa- /nologo /FC
|
|
|
|
set INCLUDES=/I..\foreign
|
|
|
|
set LIBS=user32.lib winmm.lib gdi32.lib opengl32.lib
|
|
|
|
set ICON=..\res\icon.res
|
|
|
|
set DEFINES=
|
|
|
|
|
|
|
|
pushd ..\meta
|
2016-04-22 03:28:00 +00:00
|
|
|
cl %OPTS% ..\code\4ed_metagen.cpp /Femetagen
|
2016-04-22 02:23:32 +00:00
|
|
|
popd
|
|
|
|
pushd ..\code
|
|
|
|
"..\meta\metagen"
|
|
|
|
popd
|
|
|
|
|
|
|
|
pushd ..\build
|
2016-05-06 16:45:50 +00:00
|
|
|
call "..\code\buildsuper.bat" ..\code\4coder_default_bindings.cpp
|
2016-04-22 02:23:32 +00:00
|
|
|
|
|
|
|
set EXPORTS=/EXPORT:app_get_functions
|
2016-04-22 03:28:00 +00:00
|
|
|
cl %OPTS% %INCLUDES% %DEFINES% ..\code\4ed_app_target.cpp %* /Fe4ed_app /LD /link /INCREMENTAL:NO /OPT:REF %EXPORTS%
|
2016-04-22 02:23:32 +00:00
|
|
|
|
2016-04-22 03:28:00 +00:00
|
|
|
cl %OPTS% %INCLUDES% %DEFINES% ..\code\win32_4ed.cpp %LIBS% %ICON% %* /Fe4ed
|
2016-04-22 02:23:32 +00:00
|
|
|
|
|
|
|
popd
|
|
|
|
|
|
|
|
|
|
|
|
|