summaryrefslogtreecommitdiff
path: root/packages/dbus/fpmake.pp
diff options
context:
space:
mode:
Diffstat (limited to 'packages/dbus/fpmake.pp')
-rw-r--r--packages/dbus/fpmake.pp47
1 files changed, 47 insertions, 0 deletions
diff --git a/packages/dbus/fpmake.pp b/packages/dbus/fpmake.pp
new file mode 100644
index 0000000000..2c550e372e
--- /dev/null
+++ b/packages/dbus/fpmake.pp
@@ -0,0 +1,47 @@
+{$ifndef ALLPACKAGES}
+{$mode objfpc}{$H+}
+program fpmake;
+
+uses fpmkunit;
+
+Var
+ P : TPackage;
+ T : TTarget;
+begin
+ With Installer do
+ begin
+{$endif ALLPACKAGES}
+
+ P:=AddPackage('dbus');
+{$ifdef ALLPACKAGES}
+ P.Directory:='dbus';
+{$endif ALLPACKAGES}
+ P.Version:='2.0.0';
+ P.SourcePath.Add('src');
+
+ T:=P.Targets.AddUnit('dbus.pas');
+ with T.Dependencies do
+ begin
+ AddInclude('dbus-macros.inc');
+ AddInclude('dbus-arch-deps.inc');
+ AddInclude('dbus-types.inc');
+ AddInclude('dbus-errors.inc');
+ AddInclude('dbus-address.inc');
+ AddInclude('dbus-message.inc');
+ AddInclude('dbus-memory.inc');
+ AddInclude('dbus-shared.inc');
+ AddInclude('dbus-connection.inc');
+ AddInclude('dbus-bus.inc');
+ AddInclude('dbus-pending-call.inc');
+ AddInclude('dbus-protocol.inc');
+ AddInclude('dbus-server.inc');
+ AddInclude('dbus-signature.inc');
+ AddInclude('dbus-threads.inc');
+ end;
+
+
+{$ifndef ALLPACKAGES}
+ Run;
+ end;
+end.
+{$endif ALLPACKAGES}