fpc/packages/fcl-extra/fpmake.pp
joost 6ae49f6c74 * Some fpmake fixes for windows
git-svn-id: trunk@18076 -
2011-08-03 15:32:15 +00:00

56 lines
1.4 KiB
ObjectPascal

{$ifndef ALLPACKAGES}
{$mode objfpc}{$H+}
program fpmake;
uses fpmkunit;
Var
T : TTarget;
P : TPackage;
begin
With Installer do
begin
{$endif ALLPACKAGES}
P:=AddPackage('fcl-extra');
{$ifdef ALLPACKAGES}
P.Directory:='fcl-extra';
{$endif ALLPACKAGES}
P.Version:='2.7.1';
P.Dependencies.Add('fcl-base');
P.OSes:=AllWindowsOSes+AllUnixOSes;
P.Dependencies.Add('winunits-jedi',[Win32,Win64]);
P.Dependencies.Add('winunits-base',[Win32,Win64]);
P.Dependencies.Add('univint',[darwin,iPhoneSim]);
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;
// Windows units
T:=P.Targets.AddUnit('ServiceManager.pas',[Win32,Win64]);
T.ResourceStrings:=true;
{$ifndef ALLPACKAGES}
Run;
end;
end.
{$endif ALLPACKAGES}