4coder/buildsuper.bat

21 lines
585 B
Batchfile
Raw Normal View History

2016-02-22 02:45:41 +00:00
@echo off
REM this is here to prevent the spammation of PATH
IF NOT DEFINED clset (call "C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\vcvarsall.bat" x64)
SET clset=64
SET WARNINGS=/W4 /wd4310 /wd4100 /wd4201 /wd4505 /wd4996 /wd4127 /wd4510 /wd4512 /wd4610 /WX
SET STUFF=/GR- /nologo
SET DEBUG=/Zi
2016-03-04 06:06:11 +00:00
SET EXPORTS=/EXPORT:get_bindings
2016-02-27 07:44:17 +00:00
SET SRC=4coder_custom.cpp
2016-03-05 08:10:43 +00:00
SET LINKS=user32.lib gdi32.lib
REM SET LINKS=
2016-02-22 02:45:41 +00:00
2016-03-04 21:26:00 +00:00
cl %WARNINGS% %STUFF% %DEBUG% %SRC% %LINKS% /Fe4coder_custom /LD /link /INCREMENTAL:NO /OPT:REF %EXPORTS%
2016-02-22 02:45:41 +00:00
REM file spammation preventation
del *.exp
del *.obj
del *.lib