Simplified and focus on msc, msc_vc140

This commit is contained in:
2019-02-20 14:28:00 +01:00
parent 48be270648
commit 97f0a1d2aa
11 changed files with 145 additions and 108 deletions

View File

@@ -1,7 +1,7 @@
@echo off
setlocal
set TCCLECMD="C:\apps\JPSoft\TCCLE14x64\tcc.exe"
set TCCLECMD="C:\Program Files\JPSoft\TCCLE14x64\tcc.exe"
::set TCCLECMD="C:\Program Files\JPSoft\TCCLE14x64\tcc.exe"
echo EiffelStudio delivery:
@@ -12,12 +12,13 @@ echo EiffelStudio delivery:
@echo 5: bootstrap environment
@echo 6: display logs
@echo 7: make_gpl_delivery
@echo 8: make_gpl_installation
@echo -------------------
@echo i: display info
@echo -------------------
@echo q: quit
CHOICE /C 1234567iq /M " > selection:"
CHOICE /C 12345678iq /M " > selection:"
if .%ERRORLEVEL%. == .1. GOTO make_delivery
if .%ERRORLEVEL%. == .2. GOTO make_exes
if .%ERRORLEVEL%. == .3. GOTO make_installations
@@ -25,8 +26,9 @@ if .%ERRORLEVEL%. == .4. GOTO starting_env
if .%ERRORLEVEL%. == .5. GOTO bootstrap_env
if .%ERRORLEVEL%. == .6. GOTO display_logs
if .%ERRORLEVEL%. == .7. GOTO make_gpl_delivery
if .%ERRORLEVEL%. == .8. GOTO display_info
if .%ERRORLEVEL%. == .9. goto end
if .%ERRORLEVEL%. == .8. GOTO make_gpl_installation
if .%ERRORLEVEL%. == .9. GOTO display_info
if .%ERRORLEVEL%. == .10. goto end
goto end
:make_delivery
@@ -39,6 +41,12 @@ set NO_ENTERPRISE_BUILD="True"
%TCCLECMD% /C make_delivery.btm
goto end
:make_gpl_installation
echo Build only GPL installation delivery
set NO_ENTERPRISE_BUILD="True"
%TCCLECMD% /C make_installations.btm
goto end
:make_exes
%TCCLECMD% /C make_exes.btm
goto end