4coder/buildsuper_x64.bat

35 lines
1.2 KiB
Batchfile
Raw Normal View History

2016-02-22 02:45:41 +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%" == "X64" IF NOT "%Platform%" == "x64" (call "%code_home%\windows_scripts\setup_cl_x64.bat")
2016-02-22 02:45:41 +00:00
2018-06-15 20:10:49 +00:00
set src=%1
if "%src%" == "" set src=4coder_default_bindings.cpp
2016-04-22 02:23:32 +00:00
2018-06-15 20:10:49 +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
2016-04-22 02:23:32 +00:00
2018-06-15 20:10:49 +00:00
set preproc_file=4coder_command_metadata.i
set meta_macros=/DMETA_PASS
2018-06-15 20:10:49 +00:00
cl /I"%code_home%" %opts% %debug% %src% /P /Fi%preproc_file% %meta_macros%
cl /I"%code_home%" %opts% %debug% "%code_home%\4coder_metadata_generator.cpp" /Femetadata_generator
metadata_generator -R "%code_home%" "%cd%\\%preproc_file%"
2017-11-22 20:05:58 +00:00
2018-06-15 20:10:49 +00:00
cl /I"%code_home%" %opts% %debug% %src% /Fecustom_4coder %build_dll% %exports%
2016-02-22 02:45:41 +00:00
REM file spammation preventation
2017-11-22 20:05:58 +00:00
del metadata_generator*
2016-02-22 02:45:41 +00:00
del *.exp
del *.obj
del *.lib
2018-06-15 20:10:49 +00:00
del %preproc_file%