mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-06-05 16:18:36 +02:00

* Added a fpmake.pp in the root, to compile the utils and packages in one go git-svn-id: trunk@24783 -
40 lines
745 B
ObjectPascal
40 lines
745 B
ObjectPascal
{$ifndef ALLPACKAGES}
|
|
{$mode objfpc}{$H+}
|
|
program fpmake;
|
|
|
|
uses fpmkunit;
|
|
|
|
Var
|
|
T : TTarget;
|
|
P : TPackage;
|
|
begin
|
|
With Installer do
|
|
begin
|
|
{$endif ALLPACKAGES}
|
|
|
|
P:=AddPackage('gmp');
|
|
{$ifdef ALLPACKAGES}
|
|
P.Directory:=ADirectory;
|
|
{$endif ALLPACKAGES}
|
|
P.Version:='2.7.1';
|
|
|
|
P.Author := 'FreePascal development team';
|
|
P.License := 'LGPL with modification, ';
|
|
P.HomepageURL := 'www.freepascal.org';
|
|
P.Email := '';
|
|
P.Description := 'GMP';
|
|
P.NeedLibC:= false;
|
|
P.OSes := [freebsd,darwin,iphonesim,linux,win32,aix];
|
|
|
|
P.SourcePath.Add('src');
|
|
|
|
T:=P.Targets.AddUnit('gmp.pas');
|
|
|
|
P.Sources.AddExampleFiles('examples/*',false,'.');
|
|
|
|
{$ifndef ALLPACKAGES}
|
|
Run;
|
|
end;
|
|
end.
|
|
{$endif ALLPACKAGES}
|