mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-21 22:09:33 +02:00
* fpmake.pp added
git-svn-id: trunk@9140 -
This commit is contained in:
parent
74fb7ca61d
commit
4f5d7fc6e3
1
.gitattributes
vendored
1
.gitattributes
vendored
@ -4233,6 +4233,7 @@ packages/fcl-passrc/src/pscanner.pp svneol=native#text/plain
|
||||
packages/fcl-passrc/src/readme.txt svneol=native#text/plain
|
||||
packages/fcl-process/Makefile svneol=native#text/plain
|
||||
packages/fcl-process/Makefile.fpc svneol=native#text/plain
|
||||
packages/fcl-process/fpmake.pp svneol=native#text/plain
|
||||
packages/fcl-process/src/amiga/pipes.inc svneol=native#text/plain
|
||||
packages/fcl-process/src/amiga/process.inc svneol=native#text/plain
|
||||
packages/fcl-process/src/beos/pipes.inc svneol=native#text/plain
|
||||
|
63
packages/fcl-process/fpmake.pp
Normal file
63
packages/fcl-process/fpmake.pp
Normal file
@ -0,0 +1,63 @@
|
||||
{$ifndef ALLPACKAGES}
|
||||
{$mode objfpc}{$H+}
|
||||
program fpmake;
|
||||
|
||||
uses fpmkunit;
|
||||
|
||||
Var
|
||||
T : TTarget;
|
||||
P : TPackage;
|
||||
begin
|
||||
With Installer do
|
||||
begin
|
||||
{$endif ALLPACKAGES}
|
||||
|
||||
P:=StartPackage('fcl-process');
|
||||
{$ifdef ALLPACKAGES}
|
||||
Directory:='fcl-process';
|
||||
{$endif ALLPACKAGES}
|
||||
Version:='2.0.0';
|
||||
P.SourcePath.Add('src');
|
||||
P.IncludePath.Add('src/unix',AllUnixOSs);
|
||||
P.IncludePath.Add('src/win',AllWindowsOSs);
|
||||
P.IncludePath.Add('src/$OS',AllOSs-AllWindowsOSs-AllUnixOSs);
|
||||
T:=Targets.AddUnit('pipes.pp');
|
||||
T.Dependencies.AddInclude('pipes.inc');
|
||||
T:=Targets.AddUnit('process.pp');
|
||||
T.Dependencies.AddInclude('process.inc');
|
||||
T.ResourceStrings:=True;
|
||||
T:=Targets.AddUnit('simpleipc.pp');
|
||||
T.Dependencies.AddInclude('simpleipc.inc');
|
||||
T.ResourceStrings:=True;
|
||||
T:=Targets.AddUnit('dbugmsg.pp');
|
||||
T.ResourceStrings:=True;
|
||||
T:=Targets.AddUnit('dbugintf.pp');
|
||||
T.ResourceStrings:=True;
|
||||
EndPackage;
|
||||
|
||||
{$ifndef ALLPACKAGES}
|
||||
Run;
|
||||
end;
|
||||
end.
|
||||
{$endif ALLPACKAGES}
|
||||
|
||||
{$mode objfpc}{$H+}
|
||||
program fpmake;
|
||||
|
||||
{ Generated automatically by fppkg on 4-11-07 }
|
||||
|
||||
uses fpmkunit;
|
||||
|
||||
Var
|
||||
T : TTarget;
|
||||
|
||||
begin
|
||||
With Installer do
|
||||
begin
|
||||
{
|
||||
fcl-process
|
||||
}
|
||||
Run;
|
||||
end;
|
||||
end.
|
||||
|
Loading…
Reference in New Issue
Block a user