mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-06-02 07:32:37 +02:00
70 lines
1.6 KiB
ObjectPascal
70 lines
1.6 KiB
ObjectPascal
{
|
|
File generated automatically by Lazarus Package Manager
|
|
|
|
fpmake.pp for FCL 1.0.1
|
|
|
|
This file was generated on 06-10-16
|
|
}
|
|
|
|
{$ifndef ALLPACKAGES}
|
|
{$mode objfpc}{$H+}
|
|
program fpmake;
|
|
|
|
uses fpmkunit;
|
|
{$endif ALLPACKAGES}
|
|
|
|
procedure add_FCL(const ADirectory: string);
|
|
|
|
var
|
|
P : TPackage;
|
|
T : TTarget;
|
|
|
|
begin
|
|
with Installer do
|
|
begin
|
|
P:=AddPackage('fcl');
|
|
P.Version:='1.0.1';
|
|
|
|
P.Directory:=ADirectory;
|
|
|
|
P.Flags.Add('LazarusDsgnPkg');
|
|
|
|
// Dependencies on fpc-packages
|
|
P.Dependencies.Add('fcl-process');
|
|
P.Dependencies.Add('fcl-db');
|
|
P.Dependencies.Add('fcl-image');
|
|
P.Dependencies.Add('chm');
|
|
P.Dependencies.Add('univint',[darwin, iphonesim]);
|
|
P.Dependencies.Add('cocoaint',[darwin, iphonesim]);
|
|
P.Dependencies.Add('opengl',[darwin, iphonesim]);
|
|
P.Dependencies.Add('x11', [linux]);
|
|
P.Dependencies.Add('gtk2', [linux]);
|
|
|
|
P.Options.Add('-MObjFPC');
|
|
P.Options.Add('-Scghi');
|
|
P.Options.Add('-O1');
|
|
P.Options.Add('-g');
|
|
P.Options.Add('-gl');
|
|
P.Options.Add('-l');
|
|
P.Options.Add('-vewnhibq');
|
|
P.UnitPath.Add('.');
|
|
T:=P.Targets.AddUnit('fcllaz.pas');
|
|
t.Dependencies.AddUnit('lazaruspackageintf');
|
|
t.Dependencies.AddUnit('registerfcl');
|
|
|
|
P.Targets.AddImplicitUnit('lazaruspackageintf.pas');
|
|
T:=P.Targets.AddUnit('registerfcl.pas');
|
|
|
|
// copy the compiled file, so the IDE knows how the package was compiled
|
|
P.InstallFiles.Add('FCL.compiled',AllOSes,'$(unitinstalldir)');
|
|
|
|
end;
|
|
end;
|
|
|
|
{$ifndef ALLPACKAGES}
|
|
begin
|
|
add_FCL('');
|
|
Installer.Run;
|
|
end.
|
|
{$endif ALLPACKAGES}
|