mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-10-15 10:06:09 +02:00
55 lines
1.5 KiB
ObjectPascal
55 lines
1.5 KiB
ObjectPascal
{$ifndef ALLPACKAGES}
|
|
{$mode objfpc}{$H+}
|
|
program fpmake;
|
|
|
|
uses fpmkunit;
|
|
|
|
Var
|
|
T : TTarget;
|
|
P : TPackage;
|
|
begin
|
|
With Installer do
|
|
begin
|
|
{$endif ALLPACKAGES}
|
|
|
|
P:=AddPackage('fcl-process');
|
|
{$ifdef ALLPACKAGES}
|
|
P.Directory:='fcl-process';
|
|
{$endif ALLPACKAGES}
|
|
P.Version:='2.7.1';
|
|
P.Author := 'Michael van Canneyt and Free Pascal Development team';
|
|
P.License := 'LGPL with modification';
|
|
P.HomepageURL := 'www.freepascal.org';
|
|
P.Email := '';
|
|
P.Description := 'Process (execution) related parts of Free Component Libraries (FCL), FPC''s OOP library.';
|
|
P.Options.Add('-S2h');
|
|
P.NeedLibC:= false;
|
|
|
|
P.SourcePath.Add('src');
|
|
P.IncludePath.Add('src/unix',AllUnixOSes);
|
|
P.IncludePath.Add('src/win',AllWindowsOSes);
|
|
P.IncludePath.Add('src/dummy',AllOSes-AllWindowsOSes-AllUnixOSes);
|
|
P.IncludePath.Add('src/$(OS)',AllOSes-AllWindowsOSes-AllUnixOSes);
|
|
|
|
T:=P.Targets.AddUnit('pipes.pp');
|
|
T.Dependencies.AddInclude('pipes.inc');
|
|
T:=P.Targets.AddUnit('process.pp');
|
|
T.Dependencies.AddInclude('process.inc');
|
|
T.ResourceStrings:=True;
|
|
T:=P.Targets.AddUnit('simpleipc.pp');
|
|
T.Dependencies.AddInclude('simpleipc.inc');
|
|
T.ResourceStrings:=True;
|
|
T:=P.Targets.AddUnit('pipesipc.pp',AllUnixOSes);
|
|
T.Dependencies.AddInclude('simpleipc.inc');
|
|
T.ResourceStrings:=True;
|
|
T:=P.Targets.AddUnit('dbugmsg.pp');
|
|
T.ResourceStrings:=True;
|
|
T:=P.Targets.AddUnit('dbugintf.pp');
|
|
T.ResourceStrings:=True;
|
|
|
|
{$ifndef ALLPACKAGES}
|
|
Run;
|
|
end;
|
|
end.
|
|
{$endif ALLPACKAGES}
|