From 27e052d2e5a20fd2c56a07969bc5ce08acc596d2 Mon Sep 17 00:00:00 2001 From: marco Date: Mon, 4 Feb 2008 20:43:54 +0000 Subject: * first batch git-svn-id: http://svn.freepascal.org/svn/fpc/trunk@10209 3ad0048d-3df7-0310-abae-a5850022a9f2 --- packages/cairo/fpmake.pp | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 packages/cairo/fpmake.pp (limited to 'packages/cairo') diff --git a/packages/cairo/fpmake.pp b/packages/cairo/fpmake.pp new file mode 100644 index 0000000000..2929aad264 --- /dev/null +++ b/packages/cairo/fpmake.pp @@ -0,0 +1,35 @@ +{$ifndef ALLPACKAGES} +{$mode objfpc}{$H+} +program fpmake; + +uses fpmkunit; + +Var + P : TPackage; + T : TTarget; +begin + With Installer do + begin +{$endif ALLPACKAGES} + + P:=AddPackage('cairo'); +{$ifdef ALLPACKAGES} + P.Directory:='cairo'; +{$endif ALLPACKAGES} + P.Version:='2.0.0'; + P.SourcePath.Add('src'); + +T:=P.Targets.AddUnit('cairo.pp'); + with T.Dependencies do + begin + AddUnit('xlib'); + AddUnit('xrender'); + AddUnit('freetypeh'); + end; + + +{$ifndef ALLPACKAGES} + Run; + end; +end. +{$endif ALLPACKAGES} -- cgit v1.2.1