mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-11-09 01:49:35 +01:00
54 lines
1.3 KiB
ObjectPascal
54 lines
1.3 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('fcl-registry');
|
|
{$ifdef ALLPACKAGES}
|
|
P.Directory:='fcl-registry';
|
|
{$endif ALLPACKAGES}
|
|
P.Version:='2.7.1';
|
|
P.Dependencies.Add('fcl-base');
|
|
P.Dependencies.Add('fcl-xml');
|
|
|
|
P.Author := 'FPC development team';
|
|
P.License := 'LGPL with modification, ';
|
|
P.HomepageURL := 'www.freepascal.org';
|
|
P.Email := '';
|
|
P.Description := 'Windows registry + emulation parts of Free Component Libraries (FCL), FPC''s OOP library.';
|
|
P.NeedLibC:= false;
|
|
|
|
P.SourcePath.Add('src');
|
|
P.IncludePath.Add('src');
|
|
T:=P.Targets.AddUnit('registry.pp');
|
|
with T.Dependencies do
|
|
begin
|
|
AddInclude('regdef.inc');
|
|
AddInclude('xregreg.inc');
|
|
AddInclude('regini.inc');
|
|
AddUnit('xmlreg');
|
|
end;
|
|
T.ResourceStrings := True;
|
|
T:=P.Targets.AddUnit('xmlreg.pp');
|
|
|
|
P.ExamplePath.Add('examples');
|
|
P.Targets.AddExampleProgram('tests/testbasics.pp');
|
|
P.Targets.AddExampleProgram('tests/regtestframework.pp');
|
|
// 'tests/Makefile
|
|
// 'tests/Makefile.fpc
|
|
|
|
{$ifndef ALLPACKAGES}
|
|
Run;
|
|
end;
|
|
end.
|
|
{$endif ALLPACKAGES}
|