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

uses fpmkunit;

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

    P:=AddPackage('libenet');
    P.ShortName:='lnet';
{$ifdef ALLPACKAGES}
    P.Directory:=ADirectory;
{$endif ALLPACKAGES}
    P.Version:='3.2.1';
    P.SourcePath.Add('src');
    P.SourcePath.Add('examples');
    P.IncludePath.Add('src');
    { only enable for darwin after testing }
    P.OSes := AllUnixOSes+AllWindowsOSes-[qnx,darwin,iphonesim,ios];
    if Defaults.CPU=jvm then
      P.OSes := P.OSes - [java,android];

    P.Dependencies.Add('rtl-extra'); // winsock2
    
    T:=P.Targets.AddUnit('enet.pp');
    T:=P.Targets.AddUnit('uenetclass.pp');
    with T.Dependencies do
      AddUnit('enet');
    // Examples
    P.ExamplePath.Add('examples');
      P.Targets.AddExampleProgram('serverapp.pp');
      P.Targets.AddExampleProgram('clientapp.pp');

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