Added a solution to generate only GPL version.

This commit is contained in:
2018-09-07 19:33:13 +02:00
parent 1415685e5e
commit 12e9c09911
9 changed files with 140 additions and 107 deletions

View File

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