26 lines
568 B
Batchfile
Executable File
26 lines
568 B
Batchfile
Executable File
@ECHO OFF
|
|
REM
|
|
REM File::
|
|
REM Description:: Launches Cruise Control Server
|
|
REM
|
|
REM Author:: Derek Ward <derek.ward@rockstarnorth.com>
|
|
REM date:: 18th August 2009
|
|
|
|
CALL %RS_TOOLSROOT%\bin\setenv.bat
|
|
|
|
set CC=CruiseControl
|
|
set PROJECT_TYPE=codebuilder
|
|
set PROJECT=%RS_PROJECT%
|
|
set PLATFORM=xbox360
|
|
set BUILD=release
|
|
set UNITY=
|
|
|
|
REM ======>START SERVER
|
|
pushd %RS_TOOLSBIN%\CruiseControl
|
|
"%RS_TOOLSBIN%\%CC%\ccnet.exe" -config:%RS_TOOLSCONFIG%\%CC%\%PROJECT_TYPE%\%PROJECT_TYPE%_game_build_rebuild_root.xml
|
|
popd
|
|
|
|
pause
|
|
REM ===>CRUISE CONTROL EXIT
|
|
|