summaryrefslogtreecommitdiff
path: root/packages/xforms
diff options
context:
space:
mode:
authormarco <marco@3ad0048d-3df7-0310-abae-a5850022a9f2>2008-01-27 10:04:56 +0000
committermarco <marco@3ad0048d-3df7-0310-abae-a5850022a9f2>2008-01-27 10:04:56 +0000
commit62c9e8d03da5a31648f3dff9d84e7c8f1a6652b2 (patch)
tree20b9dd6dae81dcedbb72ee4d54044585f6776fa1 /packages/xforms
parentaa091a96b9af690e847cf7aa4cc9fa0b87e65b90 (diff)
downloadfpc-62c9e8d03da5a31648f3dff9d84e7c8f1a6652b2.tar.gz
* fftw, minor updates to xforms
git-svn-id: http://svn.freepascal.org/svn/fpc/trunk@10016 3ad0048d-3df7-0310-abae-a5850022a9f2
Diffstat (limited to 'packages/xforms')
-rw-r--r--packages/xforms/fpmake.pp28
1 files changed, 23 insertions, 5 deletions
diff --git a/packages/xforms/fpmake.pp b/packages/xforms/fpmake.pp
index d4b6178682..744360295d 100644
--- a/packages/xforms/fpmake.pp
+++ b/packages/xforms/fpmake.pp
@@ -1,17 +1,35 @@
+{$ifndef ALLPACKAGES}
{$mode objfpc}{$H+}
program fpmake;
uses fpmkunit;
Var
+ P : TPackage;
T : TTarget;
-
begin
- With Installer do
+ With Installer do
begin
- { Base packages }
- {$i fpmake.inc}
+{$endif ALLPACKAGES}
+
+ P:=AddPackage('xforms');
+{$ifdef ALLPACKAGES}
+ P.Directory:='xforms';
+{$endif ALLPACKAGES}
+ P.Version:='2.0.0';
+ P.SourcePath.Add('src');
+// P.Dependencies.Add('x11');
+
+ T:=P.Targets.AddUnit('xforms.pp');
+ with T.Dependencies do
+ begin
+ AddInclude('cursorfont.inc');
+ AddUnit('xlib');
+ AddUnit('xresource');
+ end;
+
+{$ifndef ALLPACKAGES}
Run;
end;
end.
-
+{$endif ALLPACKAGES}