将一个目标与多个其他目标相关联

时间:2017-07-04 11:18:53

标签: swift xcode cocoapods

我在Podfile文件

中设置了此设置
target "A" do
  pod "Pod1"
  target "ATests" do
    pod "Pod2"
  end
end

target "B" do
  pod "Pod3"
  target "BTests" do
    pod "Pod4"
  end
end

target "SharedTests" do
  pod "Pod5"
end  

如何将目标ATestsBTestsSharedTests但不是AB相关联。希望使用link_with这样的东西,但这似乎早已不复存在。

我的目标是在我的应用程序中的测试目标之间共享代码,而不一定是pod。

0 个答案:

没有答案