123456789101112131415161718192021222324252627282930313233343536 |
- {$ifndef ALLPACKAGES}
- {$mode objfpc}{$H+}
- program fpmake;
- uses {$ifdef unix}cthreads,{$endif} fpmkunit;
- Var
- P : TPackage;
- T : TTarget;
- begin
- With Installer do
- begin
- {$endif ALLPACKAGES}
- P:=AddPackage('libpng');
- P.ShortName:='lpng';
- P.Description := 'Interface unit for libpng - working with PNG image format.';
- {$ifdef ALLPACKAGES}
- P.Directory:=ADirectory;
- {$endif ALLPACKAGES}
- P.Version:='3.3.1';
- P.Dependencies.Add('zlib');
- P.SourcePath.Add('src');
- P.OSes := AllUnixOSes-[qnx]+[win32,os2,emx];
- if Defaults.CPU=jvm then
- P.OSes := P.OSes - [java,android];
- T:=P.Targets.AddUnit('png.pp');
- P.NamespaceMap:='namespaces.lst';
- {$ifndef ALLPACKAGES}
- Run;
- end;
- end.
- {$endif ALLPACKAGES}
|