summaryrefslogtreecommitdiff
path: root/packages/ggi/fpmake.pp
blob: 8c197245da149d0410905741ffaaa6fc0b646b49 (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{$ifndef ALLPACKAGES}
{$mode objfpc}{$H+}
program fpmake;

uses fpmkunit;

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

    P:=AddPackage('ggi');
{$ifdef ALLPACKAGES}
    P.Directory:=ADirectory;
{$endif ALLPACKAGES}
    P.Version:='3.0.0';
    P.Author := 'Library: ?, header: Sebastian Guenther';
    P.License := 'Library: ?, header: LGPL with modification, ';
    P.HomepageURL := 'www.freepascal.org';
    P.Email := '';
    P.Description := 'a project that aims to develop a reliable, stable and fast graphics system that works everywhere.';
    P.NeedLibC:= true;  // true for headers that indirectly link to libc?
    P.OSes := [beos,haiku,freebsd,solaris,netbsd,openbsd,linux,dragonfly];
   
    // note that this package may be severely outdated. Header copyright
    // lists 1999, and ggi itself is still developed, and major releases
    // have happened since?

    P.SourcePath.Add('src');

    T:=P.Targets.AddUnit('ggi2d.pp');
      with T.Dependencies do
        begin
          AddUnit('ggi');
        end;
    T:=P.Targets.AddUnit('ggi.pp');
      with T.Dependencies do
        begin
          AddUnit('gii');
        end;
    T:=P.Targets.AddUnit('gii.pp');

    P.ExamplePath.Add('examples');
    P.Targets.AddExampleProgram('ggi1.pp');

{$ifndef ALLPACKAGES}
    Run;
    end;
end.
{$endif ALLPACKAGES}