mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-10 10:49:06 +02:00

used to generate include files for the fpc-all fpmake package. Now sndfile and ptc are effecively disabled for fpmake, just like for Makefile.fpc git-svn-id: trunk@15265 -
34 lines
546 B
ObjectPascal
34 lines
546 B
ObjectPascal
{$ifndef ALLPACKAGES}
|
|
{$mode objfpc}{$H+}
|
|
program fpmake;
|
|
|
|
uses fpmkunit;
|
|
|
|
Var
|
|
P : TPackage;
|
|
T : TTarget;
|
|
begin
|
|
With Installer do
|
|
begin
|
|
{$endif ALLPACKAGES}
|
|
|
|
P:=AddPackage('sndfile');
|
|
{$ifdef ALLPACKAGES}
|
|
P.Directory:='sndfile';
|
|
{$endif ALLPACKAGES}
|
|
P.Version:='2.2.2-0';
|
|
P.SourcePath.Add('src');
|
|
|
|
T:=P.Targets.AddUnit('sndfile.pp');
|
|
|
|
P.Sources.AddSrc('README');
|
|
|
|
P.ExamplePath.Add('examples');
|
|
P.Targets.AddExampleProgram('sfplay.pp');
|
|
|
|
{$ifndef ALLPACKAGES}
|
|
Run;
|
|
end;
|
|
end.
|
|
{$endif ALLPACKAGES}
|