2016-11-02 03:27:51 +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 FirstError=0
|
|
|
|
|
2016-12-28 05:05:56 +00:00
|
|
|
pushd ..\build
|
2017-01-07 02:59:55 +00:00
|
|
|
cl %OPTS% ..\code\meta\build.cpp /Zi /Febuild /DSITE_BUILD
|
2016-11-02 03:27:51 +00:00
|
|
|
if %ERRORLEVEL% neq 0 (set FirstError=1)
|
|
|
|
popd
|
|
|
|
|
2016-11-24 06:02:18 +00:00
|
|
|
..\build\build
|
2016-11-02 03:27:51 +00:00
|
|
|
if %ERRORLEVEL% neq 0 (set FirstError=1)
|
|
|
|
|
2017-01-30 17:30:03 +00:00
|
|
|
|