Browse Source

* fpmake.pp added

git-svn-id: trunk@9140 -
peter 18 years ago
parent
commit
4f5d7fc6e3
2 changed files with 64 additions and 0 deletions
  1. 1 0
      .gitattributes
  2. 63 0
      packages/fcl-process/fpmake.pp

+ 1 - 0
.gitattributes

@@ -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 - 0
packages/fcl-process/fpmake.pp

@@ -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.
+