mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 09:18:15 +02:00
33 lines
528 B
ObjectPascal
33 lines
528 B
ObjectPascal
{$ifndef ALLPACKAGES}
|
|
{$mode objfpc}{$H+}
|
|
program fpmake;
|
|
|
|
uses fpmkunit;
|
|
|
|
Var
|
|
P : TPackage;
|
|
T : TTarget;
|
|
begin
|
|
With Installer do
|
|
begin
|
|
{$endif ALLPACKAGES}
|
|
|
|
P:=AddPackage('fuse');
|
|
{$ifdef ALLPACKAGES}
|
|
P.Directory:='fuse';
|
|
{$endif ALLPACKAGES}
|
|
P.Version:='2.4.0-0';
|
|
P.SourcePath.Add('src');
|
|
P.IncludePath.Add('src');
|
|
|
|
T:=P.Targets.AddUnit('fuse.pas');
|
|
|
|
P.ExamplePath.Add('tests');
|
|
P.Targets.AddExampleProgram('fusetest.pp');
|
|
|
|
{$ifndef ALLPACKAGES}
|
|
Run;
|
|
end;
|
|
end.
|
|
{$endif ALLPACKAGES}
|