mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 11:18:18 +02:00
75 lines
1.8 KiB
ObjectPascal
75 lines
1.8 KiB
ObjectPascal
{$ifndef ALLPACKAGES}
|
|
{$mode objfpc}{$H+}
|
|
program fpmake;
|
|
|
|
uses {$ifdef unix}cthreads,{$endif} fpmkunit;
|
|
|
|
Var
|
|
T : TTarget;
|
|
P : TPackage;
|
|
begin
|
|
With Installer do
|
|
begin
|
|
{$endif ALLPACKAGES}
|
|
|
|
P:=AddPackage('fcl-extra');
|
|
P.ShortName := 'fcex';
|
|
{$ifdef ALLPACKAGES}
|
|
P.Directory:=ADirectory;
|
|
{$endif ALLPACKAGES}
|
|
P.Version:='3.3.1';
|
|
P.Dependencies.Add('fcl-base');
|
|
P.Dependencies.Add('fcl-res');
|
|
P.OSes:=[Win32,Win64]+AllUnixOSes;
|
|
if Defaults.CPU=jvm then
|
|
P.OSes := P.OSes - [java,android];
|
|
|
|
P.Dependencies.Add('winunits-jedi',[Win32,Win64]);
|
|
P.Dependencies.Add('winunits-base',[Win32,Win64]);
|
|
P.Dependencies.Add('univint',[darwin,iPhoneSim,ios]);
|
|
|
|
P.Author := '<various>';
|
|
P.License := 'LGPL with modification, ';
|
|
P.Email := '';
|
|
P.Description := 'Extra libraries of Free Component Libraries(FCL), FPC''s OOP library.';
|
|
P.NeedLibC:= false;
|
|
|
|
P.SourcePath.Add('src');
|
|
P.SourcePath.Add('src/win',AllWindowsOSes);
|
|
P.IncludePath.Add('src/$(OS)',AllOSes-AllWindowsOSes-AllUnixOSes);
|
|
P.IncludePath.Add('src/unix',AllUnixOSes);
|
|
P.IncludePath.Add('src/win',AllWindowsOSes);
|
|
P.IncludePath.Add('src/dummy',AllOSes);
|
|
|
|
T:=P.Targets.AddUnit('daemonapp.pp',AllWindowsOSes+AllUnixOSes);
|
|
with T.Dependencies do
|
|
begin
|
|
AddInclude('daemonapp.inc');
|
|
end;
|
|
T.ResourceStrings:=true;
|
|
|
|
T:=P.Targets.AddUnit('fileinfo.pp');
|
|
T.ResourceStrings:=true;
|
|
|
|
// Windows units
|
|
T:=P.Targets.AddUnit('ServiceManager.pas',[Win32,Win64]);
|
|
T.ResourceStrings:=true;
|
|
|
|
// Examples
|
|
P.ExamplePath.Add('examples');
|
|
T:=P.Targets.AddExampleProgram('showver.pp');
|
|
|
|
// example data files.
|
|
// showver.rc
|
|
// showver.res
|
|
|
|
|
|
P.NamespaceMap:='namespaces.lst';
|
|
|
|
{$ifndef ALLPACKAGES}
|
|
Run;
|
|
end;
|
|
end.
|
|
{$endif ALLPACKAGES}
|
|
|