summaryrefslogtreecommitdiff
path: root/avx512-0037785/packages/qlunits/fpmake.pp
blob: 57d2889ea9f49ecfd54739e7ec1b3f2da9cb8338 (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
{$ifndef ALLPACKAGES}
{$mode objfpc}{$H+}
program fpmake;

uses fpmkunit;

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

    P:=AddPackage('qlunits');
    P.ShortName := 'qlunits';

    P.Author := 'FPC core team';
    P.License := 'LGPL with modification';
    P.HomepageURL := 'www.freepascal.org';
    P.Description := 'qlunits, OS interface and utility units for the Sinclair QL';

{$ifdef ALLPACKAGES}
    P.Directory:=ADirectory;
{$endif ALLPACKAGES}
    P.Version:='3.3.1';
    P.SourcePath.Add('src');

    P.OSes:=[sinclairql];

    T:=P.Targets.AddUnit('qdos.pas');
    T:=P.Targets.AddUnit('qlfloat.pas');

    P.ExamplePath.Add('examples');
    T:=P.Targets.AddExampleProgram('qlcube.pas');

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