Skip to content

Commit

Permalink
Installation requirement: MATLAB release greater or equal to 2012a (7…
Browse files Browse the repository at this point in the history
….14)

git-svn-id: https://160.78.46.112/svn/fsda.code.000/FSDA/trunk@1763 336e6153-a435-9040-aa94-c6aba0fb517b
  • Loading branch information
patrizia committed Jun 18, 2018
1 parent 6e435ea commit 82a2588
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions _automation_tools/ENV_for_setup/FSDAscript.iss
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
; (To generate a new GUID, click Tools | Generate GUID inside the IDE.)
AppId=FSDA
AppName=FSDA toolbox for MATLAB
AppVerName=FSDA toolbox Release 2018a (03-jun-16) for MATLAB >R2009b
AppVerName=FSDA toolbox Release 2018a (03-jun-16) for MATLAB >=R2012a
AppPublisher=University of Parma and European Union
AppPublisherURL=http://www.riani.it/MATLAB.htm
AppSupportURL=http://www.riani.it/MATLAB.htm
Expand Down Expand Up @@ -169,9 +169,9 @@ var
if ( I = 0 ) then
begin
LevMatlab:=VersionMatlab[I];
if (CompareVersion (LevMatlab, '7.9') < 0) then
if (CompareVersion (LevMatlab, '7.13') < 0) then
begin
MsgBox('FSDA Toolbox needs a MATLAB release greater than R2009b. Installation aborted.', mbError, MB_OK );
MsgBox('FSDA Toolbox needs a MATLAB release greater or equal to R2012a. Installation aborted.', mbError, MB_OK );
abort;
end;
Expand Down Expand Up @@ -213,9 +213,9 @@ var
end;
end;
end;
if (CompareVersion (LevMatlab, '7.9') < 0) then
if (CompareVersion (LevMatlab, '7.13') < 0) then
begin
MsgBox('FSDA Toolbox is maintained from MATLAB release R2009b. Installation aborted.', mbError, MB_OK );
MsgBox('FSDA Toolbox is maintained from MATLAB release R2012a. Installation aborted.', mbError, MB_OK );
abort;
end;
end;
Expand Down

0 comments on commit 82a2588

Please sign in to comment.