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

uses fpmkunit;

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

    P:=AddPackage('zorba');
{$ifdef ALLPACKAGES}
    P.Directory:=ADirectory;
{$endif ALLPACKAGES}
    P.Version:='3.0.1';
    P.OSes := [linux,win32];
    P.SourcePath.Add('src');
    P.IncludePath.Add('src');

    T:=P.Targets.AddUnit('xqc.pas');
      with T.Dependencies do
        begin
          AddInclude('xqc_error.inc');
          AddInclude('xqc_static_context_consts.inc');
        end;
    T:=P.Targets.AddUnit('zorbadyn.pas');
      with T.Dependencies do
        begin
          AddUnit('xqc');
          AddInclude('zorba.inc');
          AddInclude('zorba_options.inc');
        end;
    T.ResourceStrings := True;
    T:=P.Targets.AddUnit('zorba.pas');
      with T.Dependencies do
        begin
          AddUnit('xqc');
          AddInclude('zorba.inc');
          AddInclude('zorba_options.inc');
        end;

//    P.ExamplePath.Add('tests/');
//    P.Targets.AddExampleProgram('testapiv3x.pp');
//    P.Targets.AddExampleProgram('test.pas');

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