* create fpc-all package from all other packages

git-svn-id: trunk@9967 -
This commit is contained in:
peter 2008-01-26 20:20:09 +00:00
parent 8a34a03ced
commit 730418b99d

View File

@ -6,7 +6,8 @@ uses fpmkunit;
Var
TBuild,T : TTarget;
P : TPackage;
PBuild,P : TPackage;
D : TDependency;
I : Integer;
begin
With Installer do
@ -51,6 +52,14 @@ The include lines below are generated with the following command:
{$include winunits-jedi/fpmake.pp}
{$include zlib/fpmake.pp}
// Create fpc-all package
PBuild:=AddPackage('fpc-all');
for i:=0 to Packages.Count-1 do
begin
P:=Packages.PackageItems[i];
D:=PBuild.Dependencies.Add(P.Name);
end;
Run;
end;
end.