mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-17 18:29:09 +02:00
* Disable building the IDE on Darwin by default
git-svn-id: trunk@44154 -
This commit is contained in:
parent
c6350e2903
commit
533777000a
@ -147,6 +147,7 @@ begin
|
|||||||
AddCustomFpmakeCommandlineOption('NoGDBMI','If value=1 or ''Y'', explicitly disable GDB/MI option');
|
AddCustomFpmakeCommandlineOption('NoGDBMI','If value=1 or ''Y'', explicitly disable GDB/MI option');
|
||||||
AddCustomFpmakeCommandlineOption('GDBMI','If value=1 or ''Y'', builds IDE with GDB/MI support (no need for LibGDB)');
|
AddCustomFpmakeCommandlineOption('GDBMI','If value=1 or ''Y'', builds IDE with GDB/MI support (no need for LibGDB)');
|
||||||
AddCustomFpmakeCommandlineOption('NoIDE','If value=1 or ''Y'', the IDE will be skipped');
|
AddCustomFpmakeCommandlineOption('NoIDE','If value=1 or ''Y'', the IDE will be skipped');
|
||||||
|
AddCustomFpmakeCommandlineOption('IDE','If value=1 or ''Y'', the IDE will be build for each target');
|
||||||
end;
|
end;
|
||||||
|
|
||||||
procedure add_ide(const ADirectory: string);
|
procedure add_ide(const ADirectory: string);
|
||||||
@ -203,6 +204,12 @@ begin
|
|||||||
P.Directory:=ADirectory;
|
P.Directory:=ADirectory;
|
||||||
{$endif ALLPACKAGES}
|
{$endif ALLPACKAGES}
|
||||||
|
|
||||||
|
s :=GetCustomFpmakeCommandlineOptionValue('IDE');
|
||||||
|
if (s='1') or (s='Y') then
|
||||||
|
P.OSes := AllOSes
|
||||||
|
else
|
||||||
|
P.OSes := AllOSes-[darwin];
|
||||||
|
|
||||||
P.Dependencies.Add('rtl-extra');
|
P.Dependencies.Add('rtl-extra');
|
||||||
P.Dependencies.Add('fv');
|
P.Dependencies.Add('fv');
|
||||||
P.Dependencies.Add('chm');
|
P.Dependencies.Add('chm');
|
||||||
|
Loading…
Reference in New Issue
Block a user