73 lines
2.1 KiB
Batchfile
73 lines
2.1 KiB
Batchfile
@echo off
|
|
|
|
set MSDEV=BuildConsole
|
|
set CONFIG=/ShowTime /ShowAgent /nologo /cfg=
|
|
set MSDEV=msdev
|
|
set CONFIG=/make
|
|
set build_type=release
|
|
set BUILD_ERROR=
|
|
call vcvars32
|
|
|
|
|
|
%MSDEV% editor/editor.dsp %CONFIG%"editor - Win32 Release" %build_target%
|
|
if errorlevel 1 set BUILD_ERROR=1
|
|
|
|
%MSDEV% engine/engine.dsp %CONFIG%"engine - Win32 Release" %build_target%
|
|
if errorlevel 1 set BUILD_ERROR=1
|
|
|
|
%MSDEV% launch/launch.dsp %CONFIG%"launch - Win32 Release" %build_target%
|
|
if errorlevel 1 set BUILD_ERROR=1
|
|
|
|
%MSDEV% common/common.dsp %CONFIG%"common - Win32 Release" %build_target%
|
|
if errorlevel 1 set BUILD_ERROR=1
|
|
|
|
%MSDEV% physic/physic.dsp %CONFIG%"physic - Win32 Release" %build_target%
|
|
if errorlevel 1 set BUILD_ERROR=1
|
|
|
|
%MSDEV% render/render.dsp %CONFIG%"render - Win32 Release" %build_target%
|
|
if errorlevel 1 set BUILD_ERROR=1
|
|
|
|
qcclib.exe -dir pr_server /V7 /O3
|
|
if errorlevel 1 set BUILD_ERROR=1
|
|
|
|
qcclib.exe -dir pr_client /V7 /O3
|
|
if errorlevel 1 set BUILD_ERROR=1
|
|
|
|
qcclib.exe -dir pr_uimenu /V7 /O3
|
|
if errorlevel 1 set BUILD_ERROR=1
|
|
|
|
if "%BUILD_ERROR%"=="" goto build_ok
|
|
|
|
echo *********************
|
|
echo *********************
|
|
echo *** Build Errors! ***
|
|
echo *********************
|
|
echo *********************
|
|
echo press any key to exit
|
|
echo *********************
|
|
pause>nul
|
|
goto done
|
|
|
|
|
|
@rem
|
|
@rem Successful build
|
|
@rem
|
|
:build_ok
|
|
|
|
rem //delete log files
|
|
if exist editor\editor.plg del /f /q editor\editor.plg
|
|
if exist engine\engine.plg del /f /q engine\engine.plg
|
|
if exist launch\launch.plg del /f /q launch\launch.plg
|
|
if exist common\common.plg del /f /q common\common.plg
|
|
if exist physic\physic.plg del /f /q physic\physic.plg
|
|
if exist render\render.plg del /f /q render\render.plg
|
|
if exist pr_server\server.dat move pr_server\server.dat D:\Xash3D\xash\vprogs\server.dat
|
|
if exist pr_client\client.dat move pr_client\client.dat D:\Xash3D\xash\vprogs\client.dat
|
|
if exist pr_uimenu\uimenu.dat move pr_uimenu\uimenu.dat D:\Xash3D\xash\vprogs\uimenu.dat
|
|
if exist compile.log del /f /q compile.log
|
|
|
|
echo Build succeeded!
|
|
echo Please wait. Xash is now loading
|
|
cd D:\Xash3D\
|
|
xash.exe +map qctest -log -debug -dev 3
|
|
:done |