-
Notifications
You must be signed in to change notification settings - Fork 0
/
fpmake.pp
44 lines (34 loc) · 809 Bytes
/
fpmake.pp
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('cblas');
P.ShortName:='cblas';
{$ifdef ALLPACKAGES}
P.Directory:=ADirectory;
{$endif ALLPACKAGES}
P.Version:='0.0.1';
P.OSes := AllUnixOSes+AllWindowsOSes-[qnx];
{ unit code }
P.SourcePath.Add('src');
P.IncludePath.Add('src');
T:=P.Targets.AddUnit('cblas.pas');
{ unit tests }
P.SourcePath.Add('tests');
P.ExamplePath.Add('tests/');
T:=P.Targets.AddUnit('tests.pp');
T.ResourceStrings := True;
// P.Targets.AddExampleProgram('testapiv3x.pp');
// P.Targets.AddExampleProgram('test.pas');
{$ifndef ALLPACKAGES}
Run;
end;
end.
{$endif ALLPACKAGES}