소스 검색

* depend on 2.2.1 paszlib and fcl-process

git-svn-id: trunk@10221 -
peter 17 년 전
부모
커밋
bc18af52a9
1개의 변경된 파일5개의 추가작업 그리고 2개의 파일을 삭제
  1. 5 2
      packages/fpmkunit/fpmake.pp

+ 5 - 2
packages/fpmkunit/fpmake.pp

@@ -6,6 +6,7 @@ uses fpmkunit;
 
 Var
   P : TPackage;
+  D : TDependency;
 begin
   With Installer do
     begin
@@ -17,8 +18,10 @@ begin
 {$endif ALLPACKAGES}
     P.Version:='2.2.1-1';
     P.Description:='Free Pascal Make Tool';
-    P.Dependencies.Add('paszlib');
-    P.Dependencies.Add('fcl-process');
+    D:=P.Dependencies.Add('paszlib');
+      D.Version:='2.2.1-0';
+    D:=P.Dependencies.Add('fcl-process');
+      D.Version:='2.2.1-0';
     P.Targets.AddUnit('src/fpmkunit.pp');
 
 {$ifndef ALLPACKAGES}