Added etc local profile files.

This commit is contained in:
2018-05-17 15:45:57 +02:00
parent f541aee45f
commit 3f989fed20
130 changed files with 50465 additions and 0 deletions

View File

@@ -0,0 +1,49 @@
REM Define some user parameters here if not yet defined.
iff defined _SET_ALIAS_SET_ then
remtrace Script set_alias.btm was already called.
goto :eof
endiff
set _SET_ALIAS_SET_=1
REM Setup environment
REM =================
iff exist %INIT_DIR\etc\config.btm then
call %INIT_DIR\etc\config.btm
else
echo ERROR missing file %INIT_DIR\etc\config.btm
set _SET_ALIAS_SET_=0
CANCEL
endiff
set WORK_DIR=%WORK_DIR%\%STUDIO_VERSION_MAJOR_MINOR%\%ISE_PLATFORM%_%ISE_C_COMPILER_VER%
set DELIV_DIR=%WORK_DIR%\build
REM The file where all output is stored
set INSTALL_LOG=%DELIV_DIR\install.log
set ERROR_LOG=%DELIV_DIR\error.log
REM NB: The following directory is where a new version of ec.exe will be finalized.
set FINALIZATION_DIR=%DELIV_DIR
REM NB: The following directory will be erased!
set TMP_EIFFEL_SRC=%WORK_DIR%\tmpdev
REM Where the new delivery is set up. Warning: if it exists, the directory will be erased!
set STUDIO_NAME=Eiffel_%STUDIO_VERSION_MAJOR_MINOR
set INSTALL_DIR=%WORK_DIR%\%STUDIO_NAME%
set STUDIO_DIR=%INSTALL_DIR\EiffelStudio
REM Check for Windows 64 bits.
iff "%ISE_PLATFORM%" == "win64" then
set WIN64=true
endiff
REM OK The rest is private, no need for you to see it :)
call %INIT_DIR%\set_simple_aliases.btm
iff exist %INIT_DIR\etc\set_local_aliases.btm then
call %INIT_DIR\etc\set_local_aliases.btm
endiff