mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-09-11 11:49:24 +02:00
* add fcl-process dependency
git-svn-id: trunk@9124 -
This commit is contained in:
parent
6fcdfee5ec
commit
220567d30b
1
.gitattributes
vendored
1
.gitattributes
vendored
@ -4320,7 +4320,6 @@ packages/fcl-xml/tests/xmlts.pp svneol=native#text/plain
|
|||||||
packages/fpmake.pp svneol=native#text/plain
|
packages/fpmake.pp svneol=native#text/plain
|
||||||
packages/fpmkunit/Makefile svneol=native#text/plain
|
packages/fpmkunit/Makefile svneol=native#text/plain
|
||||||
packages/fpmkunit/Makefile.fpc svneol=native#text/plain
|
packages/fpmkunit/Makefile.fpc svneol=native#text/plain
|
||||||
packages/fpmkunit/fpmake.inc svneol=native#text/plain
|
|
||||||
packages/fpmkunit/fpmake.pp svneol=native#text/plain
|
packages/fpmkunit/fpmake.pp svneol=native#text/plain
|
||||||
packages/fpmkunit/src/fpmkunit.pp svneol=native#text/plain
|
packages/fpmkunit/src/fpmkunit.pp svneol=native#text/plain
|
||||||
packages/hash/Makefile svneol=native#text/plain
|
packages/hash/Makefile svneol=native#text/plain
|
||||||
|
@ -1,6 +0,0 @@
|
|||||||
StartPackage('fpmkunit');
|
|
||||||
Version:='2.0.0';
|
|
||||||
Description:='Free Pascal Make Tool';
|
|
||||||
T:=Targets.AddUnit('fpmkunit');
|
|
||||||
T.Directory:='src';
|
|
||||||
EndPackage;
|
|
@ -1,15 +1,30 @@
|
|||||||
|
{$ifndef ALLPACKAGES}
|
||||||
{$mode objfpc}{$H+}
|
{$mode objfpc}{$H+}
|
||||||
program fpmake;
|
program fpmake;
|
||||||
|
|
||||||
uses fpmkunit;
|
uses fpmkunit;
|
||||||
|
|
||||||
var
|
Var
|
||||||
T : TTarget;
|
T : TTarget;
|
||||||
|
|
||||||
begin
|
begin
|
||||||
with Installer do
|
With Installer do
|
||||||
begin
|
begin
|
||||||
{$i fpmake.inc}
|
{$endif ALLPACKAGES}
|
||||||
Run;
|
|
||||||
|
StartPackage('fpmkunit');
|
||||||
|
{$ifdef ALLPACKAGES}
|
||||||
|
Directory:='fpmkunit';
|
||||||
|
{$endif ALLPACKAGES}
|
||||||
|
AddDependency('paszlib');
|
||||||
|
AddDependency('fcl-process');
|
||||||
|
Version:='2.2.0';
|
||||||
|
Description:='Free Pascal Make Tool';
|
||||||
|
T:=Targets.AddUnit('src/fpmkunit.pp');
|
||||||
|
EndPackage;
|
||||||
|
|
||||||
|
{$ifndef ALLPACKAGES}
|
||||||
|
Run;
|
||||||
end;
|
end;
|
||||||
end.
|
end.
|
||||||
|
{$endif ALLPACKAGES}
|
||||||
|
Loading…
Reference in New Issue
Block a user