mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-09-07 12:30:42 +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/fpmkunit/Makefile 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/src/fpmkunit.pp 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+}
|
||||
program fpmake;
|
||||
|
||||
uses fpmkunit;
|
||||
|
||||
var
|
||||
Var
|
||||
T : TTarget;
|
||||
|
||||
begin
|
||||
with Installer do
|
||||
With Installer do
|
||||
begin
|
||||
{$i fpmake.inc}
|
||||
Run;
|
||||
{$endif ALLPACKAGES}
|
||||
|
||||
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.
|
||||
|
||||
{$endif ALLPACKAGES}
|
||||
|
Loading…
Reference in New Issue
Block a user