summaryrefslogtreecommitdiff
path: root/packages/objcrtl/fpmake.pp
blob: 1d6bea65c2af0ce418c5f4b414e0014eab6ef2da (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
{$ifndef ALLPACKAGES}
{$mode objfpc}{$H+}
program fpmake;

uses fpmkunit;

Var
  P : TPackage;
begin
  With Installer do
    begin
{$endif ALLPACKAGES}
    P:=AddPackage('objcrtl');
{$ifdef ALLPACKAGES}
    P.Directory:=ADirectory;
{$endif ALLPACKAGES}
    P.Version:='3.0.5';
    P.OSes:=[darwin,iphonesim];
    P.Author := 'Library: Apple, header: Dmitry "skalogryz" Boyarintsev';
    P.License := 'Library: Apple, header: LGPL with modification, ';
    P.HomepageURL := 'www.freepascal.org';
    P.Email := '';
    P.Description := 'Objective-C Runtime-Library.';
    P.NeedLibC:= false;  // true for headers that indirectly link to libc?

    P.SourcePath.Add('src');

    P.Targets.AddUnit('objcrtl.pas');
    P.Targets.AddUnit('objcrtl10.pas');
    P.Targets.AddUnit('objcrtl20.pas');
    P.Targets.AddUnit('objcrtliphoneos.pas');
    P.Targets.AddUnit('objcrtlmacosx.pas');
    P.Targets.AddUnit('objcrtlutils.pas');

    P.ExamplePath.Add('examples');
    P.Targets.AddExampleProgram('examples/objcrtltest.pas');

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