fpc/packages/zorba/fpmake.pp
joost 855cbebf19 Fixed fpmake.pp files:
* ExternalURL does not exist anymore
 * Do not add dependencies on files in other packages, add a package dependency
   on the package where the files are in instead
 * Replaced the copy of fcl-base's fpmake.pp in fcl-extra with a real one
 * Fixed some dependencies and file-names

git-svn-id: trunk@15148 -
2010-04-15 20:26:03 +00:00

53 lines
1.1 KiB
ObjectPascal

{$ifndef ALLPACKAGES}
{$mode objfpc}{$H+}
program fpmake;
uses fpmkunit;
Var
P : TPackage;
T : TTarget;
begin
With Installer do
begin
{$endif ALLPACKAGES}
P:=AddPackage('zorba');
{$ifdef ALLPACKAGES}
P.Directory:='zorba';
{$endif ALLPACKAGES}
P.Version:='0.9.9';
P.SourcePath.Add('src');
P.IncludePath.Add('src');
T:=P.Targets.AddUnit('xqc.pas');
with T.Dependencies do
begin
AddInclude('xqc_error.inc');
AddInclude('xqc_static_context_consts.inc');
end;
T:=P.Targets.AddUnit('zorbadyn.pas');
with T.Dependencies do
begin
AddUnit('xqc');
AddInclude('zorba.inc');
AddInclude('zorba_options.inc');
end;
T:=P.Targets.AddUnit('zorba.pas');
with T.Dependencies do
begin
AddUnit('xqc');
AddInclude('zorba.inc');
AddInclude('zorba_options.inc');
end;
// P.ExamplePath.Add('tests/');
// P.Targets.AddExampleProgram('testapiv3x.pp');
// P.Targets.AddExampleProgram('test.pas');
{$ifndef ALLPACKAGES}
Run;
end;
end.
{$endif ALLPACKAGES}