4coder/buildsuper_x86.bat

31 lines
1.0 KiB
Batchfile
Raw Normal View History

2017-02-25 01:53:40 +00:00
@echo off
REM This stores the path of the buildsuper.bat script
REM in CODE_HOME. This way you can always include the
REM default files no matter where you store your code.
REM And no matter how you call buildsuper.bat.
set code_home=%~dp0
if %code_home:~-1%==\ (set code_home=%code_home:~0,-1%)
if NOT "%Platform%" == "X86" IF NOT "%Platform%" == "x86" (call "%code_home%\windows_scripts\setup_cl_x86.bat")
2017-02-25 01:53:40 +00:00
set SRC=%1
if "%SRC%" == "" set SRC=4coder_default_bindings.cpp
2017-02-25 01:53:40 +00:00
set OPTS=/W4 /wd4310 /wd4100 /wd4201 /wd4505 /wd4996 /wd4127 /wd4510 /wd4512 /wd4610 /wd4457 /WX
set OPTS=%OPTS% /GR- /nologo /FC
set DEBUG=/Zi
set BUILD_DLL=/LD /link /INCREMENTAL:NO /OPT:REF
set EXPORTS=/EXPORT:get_bindings /EXPORT:get_alpha_4coder_version
2017-02-25 01:53:40 +00:00
cl %OPTS% /I"%code_home%" %DEBUG% "%code_home%\4coder_metadata_generator.cpp" /Femetadata_generator
metadata_generator -R "%code_home%" "%code_home%\*"
2017-11-22 20:05:58 +00:00
cl %OPTS% /I"%code_home%" %DEBUG% "%SRC%" /Fecustom_4coder %BUILD_DLL% %EXPORTS%
2017-02-25 01:53:40 +00:00
REM file spammation preventation
2017-11-22 20:05:58 +00:00
del metadata_generator*
2017-02-25 01:53:40 +00:00
del *.exp
del *.obj
del *.lib