mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 14:28:01 +02:00
49 lines
1.1 KiB
ObjectPascal
49 lines
1.1 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('fcl-pdf');
|
|
|
|
{$ifdef ALLPACKAGES}
|
|
P.Directory:=ADirectory;
|
|
{$endif ALLPACKAGES}
|
|
|
|
P.Author := 'Michael Van Canneyt & Graeme Geldenhuys';
|
|
P.License := 'LGPL with modification, ';
|
|
P.HomepageURL := 'www.freepascal.org';
|
|
P.Email := '';
|
|
P.Description := 'PDF generating and TTF file info library';
|
|
P.NeedLibC:= false;
|
|
P.OSes:=P.OSes-[embedded,win16,msdos];
|
|
P.Dependencies.Add('rtl-objpas');
|
|
P.Dependencies.Add('fcl-base');
|
|
P.Dependencies.Add('fcl-image');
|
|
P.Dependencies.Add('paszlib');
|
|
P.Version:='3.1.1';
|
|
T:=P.Targets.AddUnit('src/fpttfencodings.pp');
|
|
T:=P.Targets.AddUnit('src/fpparsettf.pp');
|
|
With T do
|
|
Dependencies.AddUnit('fpttfencodings');
|
|
T:=P.Targets.AddUnit('src/fpttf.pp');
|
|
T:=P.Targets.AddUnit('src/fppdf.pp');
|
|
With T do
|
|
begin
|
|
Dependencies.AddUnit('fpparsettf');
|
|
end;
|
|
|
|
// md5.ref
|
|
{$ifndef ALLPACKAGES}
|
|
Run;
|
|
end;
|
|
end.
|
|
{$endif ALLPACKAGES}
|