mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-10-22 15:54:35 +02:00

* ExternalURL does not exist anymore * Do not add dependencies on files in other packages, add a package dependency on the package where the files are in instead * Replaced the copy of fcl-base's fpmake.pp in fcl-extra with a real one * Fixed some dependencies and file-names git-svn-id: trunk@15148 -
54 lines
1.2 KiB
ObjectPascal
54 lines
1.2 KiB
ObjectPascal
{$ifndef ALLPACKAGES}
|
|
{$mode objfpc}{$H+}
|
|
program fpmake;
|
|
|
|
uses fpmkunit;
|
|
|
|
Var
|
|
P : TPackage;
|
|
T : TTarget;
|
|
begin
|
|
With Installer do
|
|
begin
|
|
{$endif ALLPACKAGES}
|
|
|
|
P:=AddPackage('fpgtk');
|
|
{$ifdef ALLPACKAGES}
|
|
P.Directory:='fpgtk';
|
|
{$endif ALLPACKAGES}
|
|
P.Version:='2.2.2-0';
|
|
P.Author := 'Luk Vandelaer & Sebastian Guenther (?)';
|
|
P.License := 'LGPL with modification, ';
|
|
P.HomepageURL := 'www.freepascal.org';
|
|
P.Email := '';
|
|
P.Description := 'Lightweight OOP wrapper over GTK1.';
|
|
P.NeedLibC:= True;
|
|
|
|
P.Dependencies.Add('gtk1');
|
|
P.SourcePath.Add('src');
|
|
|
|
T:=P.Targets.AddUnit('fpglib.pp');
|
|
T:=P.Targets.AddUnit('fpgtkext.pp');
|
|
with T.Dependencies do
|
|
begin
|
|
AddUnit('fpgtk');
|
|
end;
|
|
T:=P.Targets.AddUnit('fpgtk.pp');
|
|
with T.Dependencies do
|
|
begin
|
|
AddUnit('fpglib');
|
|
end;
|
|
|
|
P.ExamplePath.Add('examples');
|
|
P.Targets.AddExampleProgram('examples/lister.pp');
|
|
P.Targets.AddExampleProgram('examples/testgtk.pp');
|
|
// 'examples/Makefile
|
|
// 'examples/Makefile.fpc
|
|
// 'examples/testgtk.ppr
|
|
|
|
{$ifndef ALLPACKAGES}
|
|
Run;
|
|
end;
|
|
end.
|
|
{$endif ALLPACKAGES}
|