38 lines
807 B
Plaintext
38 lines
807 B
Plaintext
echo Load local settings
|
|
|
|
iff exist %~dp0%COMPUTERNAME%.btm then
|
|
call %~dp0%COMPUTERNAME%.btm
|
|
endiff
|
|
|
|
:: Set default environment for any machine here.
|
|
|
|
iff not defined WORK_DIR then
|
|
set WORK_DIR=%~dp0..\..\DELIV
|
|
endiff
|
|
|
|
iff not defined ISE_EIFFEL then
|
|
set ISE_EIFFEL=%INIT_DIR%\bin\eiffel_%ISE_PLATFORM%
|
|
endiff
|
|
|
|
|
|
set LOCAL_REPO_ROOT=%~dp0..\..\..\repos\mirrors
|
|
pushd %LOCAL_REPO_ROOT%
|
|
set LOCAL_REPO_ROOT=%CD%
|
|
popd
|
|
set "LOCAL_REPO_ROOT=%LOCAL_REPO_ROOT:\=/%"
|
|
iff not defined DEFAULT_PUBLIC_SVN then
|
|
set DEFAULT_PUBLIC_SVN=file:///%LOCAL_REPO_ROOT%/svn/eiffelstudio/trunk
|
|
endiff
|
|
iff not defined DEFAULT_ISE_SVN then
|
|
set DEFAULT_ISE_SVN=file:///%LOCAL_REPO_ROOT%/svn/ise/trunk
|
|
endiff
|
|
|
|
rem set ISE_EC_FLAGS=-full
|
|
|
|
set DELIV_SKIP_ERROR="True"
|
|
rem set DELIV_SKIP_ERROR="False"
|
|
|
|
set ISE_LITE_DELIV="False"
|
|
|
|
|