22 lines
525 B
Batchfile
22 lines
525 B
Batchfile
@echo off
|
|
|
|
call "ctime" -begin 4ed_site.ctm
|
|
|
|
SET OPTS=/W4 /wd4310 /wd4100 /wd4201 /wd4505 /wd4996 /wd4127 /wd4510 /wd4512 /wd4610 /wd4390 /WX
|
|
SET OPTS=%OPTS% /GR- /EHa- /nologo /FC
|
|
SET OPTS=%OPTS% /I..\\..\\code
|
|
|
|
|
|
SET FirstError=0
|
|
|
|
pushd ..\..\build\site
|
|
cl %OPTS% ..\..\code\site\sitegen.cpp /Zi /Fesitegen
|
|
if %ERRORLEVEL% neq 0 (set FirstError=1)
|
|
popd
|
|
|
|
if %FirstError% neq 1 (
|
|
..\..\build\site\sitegen.exe .. source_material ..\..\site
|
|
)
|
|
if %ERRORLEVEL% neq 0 (set FirstError=1)
|
|
|
|
call "ctime" -end 4ed_site.ctm %FirstError% |