25 lines
540 B
Batchfile
Executable File
25 lines
540 B
Batchfile
Executable File
@ECHO OFF
|
|
REM
|
|
REM File:: codebuilder_dev_ps3.bat
|
|
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=samples
|
|
set PROJECT=rage
|
|
set BRANCH=dev
|
|
|
|
REM ======>START SERVER
|
|
pushd %RS_TOOLSBIN%\%CC%
|
|
ECHO %CD%
|
|
"%RS_TOOLSBIN%\%CC%\ccnet.exe" -config:%RS_TOOLSCONFIG%\%CC%\%PROJECT%\%PROJECT_TYPE%\%PROJECT%_%PROJECT_TYPE%.xml
|
|
popd
|
|
|
|
pause
|
|
REM ===>CRUISE CONTROL EXIT
|
|
|