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,68 @@
REM Check local file
iff defined ISE_BUILD_NAME .and. exist %~dp0local-%ISE_BUILD_NAME%.btm then
call %~dp0local-%ISE_BUILD_NAME%.btm
elseiff exist %~dp0local-%COMPUTERNAME%.btm then
call %~dp0local-%COMPUTERNAME%.btm
elseiff exist %~dp0local.btm then
call %~dp0local.btm
endiff
REM Backward compatibility
iff defined DEFAULT_ORIGO_SVN then
set DEFAULT_PUBLIC_SVN=%DEFAULT_ORIGO_SVN%
endiff
iff defined ORIGO_SVN_REVISION then
set PUBLIC_SVN_REVISION=%ORIGO_SVN_REVISION%
endiff
REM General configuration
iff not defined STUDIO_VERSION_MAJOR_MINOR then
set STUDIO_VERSION_MAJOR_MINOR=18.05
endiff
iff not defined WORK_DIR then
set WORK_DIR=C:\work
endiff
REM Tag to export files from public SVN repository
iff not defined DEFAULT_PUBLIC_SVN then
set DEFAULT_PUBLIC_SVN=https://svn.eiffel.com/eiffelstudio/trunk
endiff
iff not defined PUBLIC_SVN_REVISION then
set PUBLIC_SVN_REVISION=HEAD
endiff
REM Tag to export files in SVN at ISE
iff not defined DEFAULT_ISE_SVN then
set DEFAULT_ISE_SVN=svn://%USERNAME%@svn.ise/ise_svn/trunk
endiff
iff not defined ISE_C_COMPILER then
REM set ISE_C_COMPILER=msc
set ISE_C_COMPILER=msc_vc140
endiff
iff not defined ISE_C_COMPILER_VER then
REM set ISE_C_COMPILER_VER=WSDK71
REM set ISE_C_COMPILER_VER=VC140
set ISE_C_COMPILER_VER=VC100
endiff
iff not defined ISE_NIGHTLY_SCP_HOST then
set ISE_NIGHTLY_SCP_HOST=eiffel.com
endiff
iff not defined ISE_NIGHTLY_SCP_PATH then
set ISE_NIGHTLY_SCP_PATH=builds/nightly/
endiff
iff not defined ISE_NIGHTLY_SCP_USER then
set ISE_NIGHTLY_SCP_USER=manus
endiff
iff not defined ISE_NIGHTLY_SCP_LOCATION then
set ISE_NIGHTLY_SCP_LOCATION=%ISE_NIGHTLY_SCP_USER%@%ISE_NIGHTLY_SCP_HOST%:%ISE_NIGHTLY_SCP_PATH%
endiff
set PATH=%ISE_EIFFEL%\studio\spec\%ISE_PLATFORM%\bin;%ISE_EIFFEL%\tools\spec\%ISE_PLATFORM%\bin;%PATH%
set PATH=%ISE_EIFFEL%\library\gobo\spec\%ISE_PLATFORM%\bin;%PATH%
set PATH=%PATH%;%ISE_EIFFEL%\gcc\%ISE_PLATFORM%\msys\1.0\bin
set PATH=%PATH%;%~dp0..\bin

View File

@@ -0,0 +1,57 @@
echo Load local settings
REM set ISE_PLATFORM=windows
iff not defined ISE_PLATFORM then
set ISE_PLATFORM=win64
endiff
iff not defined ISE_EIFFEL then
set ISE_EIFFEL=C:\DEV\Eiffel\18.05_%ISE_PLATFORM%
endiff
rem set ISE_EC_FLAGS=-full
set ISE_C_COMPILER=msc_vc140
set ISE_C_COMPILER_VER=VC140
rem set ISE_C_COMPILER_VER=VC150
rem set ISE_C_COMPILER=msc
rem set ISE_C_COMPILER_VER=WSDK71
rem set ISE_C_COMPILER_VER=VC100x
rem set ISE_C_COMPILER_VER=VC100
iff "%ISE_PLATFORM%" == "win64" then
rem set MYSQL=C:\Program Files (x86)\MySQL\MySQL Connector.C 6.1
rem set MYSQL=C:\DEV\mysql\winx64\
rem set MYSQL=C:\apps\mysql-5.6.22-winx64\
rem set MYSQL=C:\DEV\3rd\mysql\mysql-5.6.38-winx64
set MYSQL=C:\DEV\include\mysql-connector-c-6.1.11-winx64
else
rem set MYSQL=C:\Program Files (x86)\MySQL\MySQL Connector.C 6.1
rem set MYSQL=C:\DEV\3rd\mysql\mysql-5.6.38-win32
set MYSQL=C:\DEV\include\mysql-connector-c-6.1.11-win32
endiff
iff not defined WORK_DIR then
set WORK_DIR=C:\DEV\deliv
set WORK_DIR=M:\deliv
endiff
iff not defined DEFAULT_PUBLIC_SVN then
set DEFAULT_PUBLIC_SVN=file:///C:/DEV/ise/repos/mirrors/svn/eiffelstudio/trunk
rem set DEFAULT_PUBLIC_SVN=svn://192.168.1.11:3699/trunk
endiff
iff not defined DEFAULT_ISE_SVN then
set DEFAULT_ISE_SVN=svn://jfiat@svn.ise:3691/ise_svn/trunk
set DEFAULT_ISE_SVN=file:///C:/DEV/ise/repos/mirrors/svn/ise/trunk
rem set DEFAULT_ISE_SVN=svn://192.168.1.11:3698/trunk
endiff
rem set PATH=%PATH%;C:\cygwin64\bin
set PATH=%PATH%;C:\apps\files\7-Zip
set DELIV_SKIP_ERROR="True"
rem set DELIV_SKIP_ERROR="False"
set ISE_LITE_DELIV="False"

View File

@@ -0,0 +1,12 @@
REM Check ISE_BUILD_NAME=win64-vc140
echo Use build "win64-vc140"
set ISE_PLATFORM=win64
iff exist %~dp0local-%COMPUTERNAME%.btm then
call %~dp0local-%COMPUTERNAME%.btm
elseiff exist %~dp0local.btm then
call %~dp0local.btm
endiff
set ISE_C_COMPILER=msc_vc140
set ISE_C_COMPILER_VER=VC140

View File

@@ -0,0 +1,12 @@
REM Check ISE_BUILD_NAME=win64-vc150
echo Use build "win64-vc150"
set ISE_PLATFORM=win64
iff exist %~dp0local-%COMPUTERNAME%.btm then
call %~dp0local-%COMPUTERNAME%.btm
elseiff exist %~dp0local.btm then
call %~dp0local.btm
endiff
set ISE_C_COMPILER=msc_vc140
set ISE_C_COMPILER_VER=VC150

View File

@@ -0,0 +1,12 @@
REM Check ISE_BUILD_NAME=windows-vc150
echo Use build "windows-vc150"
set ISE_PLATFORM=windows
iff exist %~dp0local-%COMPUTERNAME%.btm then
call %~dp0local-%COMPUTERNAME%.btm
elseiff exist %~dp0local.btm then
call %~dp0local.btm
endiff
set ISE_C_COMPILER=msc_vc140
set ISE_C_COMPILER_VER=VC150