This repository has been archived on 2022-06-27. You can view files and clone it, but cannot push or open issues or pull requests.
Xash3DArchive/release.bat

42 lines
897 B
Batchfile
Raw Normal View History

2007-06-21 22:00:00 +02:00
@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% engine/engine.dsp %CONFIG%"engine - Win32 Release" %build_target%
if errorlevel 1 set BUILD_ERROR=1
2010-11-15 22:00:00 +01:00
%MSDEV% mainui/mainui.dsp %CONFIG%"mainui - Win32 Release" %build_target%
2010-07-17 22:00:00 +02:00
if errorlevel 1 set BUILD_ERROR=1
2007-06-21 22:00:00 +02:00
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 engine\engine.plg del /f /q engine\engine.plg
2010-11-15 22:00:00 +01:00
if exist mainui\mainui.plg del /f /q mainui\mainui.plg
2007-06-21 22:00:00 +02:00
2010-07-30 22:00:00 +02:00
echo
2007-06-21 22:00:00 +02:00
echo Build succeeded!
2010-07-30 22:00:00 +02:00
echo
2007-06-21 22:00:00 +02:00
:done