summaryrefslogtreecommitdiff
path: root/packages/libfontconfig/fpmake.pp
blob: cba69c8c2700b230cda7a4a350ac31dd8dfc7e6f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{$ifndef ALLPACKAGES}
{$mode objfpc}{$H+}
program fpmake;

uses fpmkunit;

Var
  P : TPackage;
  T : TTarget;
begin
  With Installer do
    begin
{$endif ALLPACKAGES}

    P:=AddPackage('libfontconfig');
    P.ShortName:='libfc';
{$ifdef ALLPACKAGES}
    P.Directory:=ADirectory;
{$endif ALLPACKAGES}
    P.Version:='3.2.0rc1';
    P.SourcePath.Add('src');
    P.IncludePath.Add('src');
    P.OSes := [linux,freebsd, darwin]; // Darwin was tested!
    T:=P.Targets.AddUnit('libfontconfig.pp');
    P.ExamplePath.Add('examples');
    P.Targets.AddExampleProgram('testfc.pp');
{$ifndef ALLPACKAGES}
    Run;
    end;
end.
{$endif ALLPACKAGES}