mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 15:28:06 +02:00
30 lines
434 B
Plaintext
30 lines
434 B
Plaintext
{$ifndef ALLPACKAGES}
|
|
{$mode objfpc}{$H+}
|
|
program fpmake;
|
|
|
|
uses fpmkunit;
|
|
|
|
Var
|
|
P : TPackage;
|
|
T : TTarget;
|
|
begin
|
|
With Installer do
|
|
begin
|
|
{$endif ALLPACKAGES}
|
|
|
|
P:=AddPackage('matroska');
|
|
{$ifdef ALLPACKAGES}
|
|
P.Directory:='matroska';
|
|
{$endif ALLPACKAGES}
|
|
P.Version:='2.7.1';
|
|
P.SourcePath.Add('src');
|
|
|
|
T:=P.Targets.AddUnit('matroska.pas');
|
|
|
|
|
|
{$ifndef ALLPACKAGES}
|
|
Run;
|
|
end;
|
|
end.
|
|
{$endif ALLPACKAGES}
|