在我的项目中,我们链接了一些受源代码控制的二进制库。我们还使用了一个 Cocoapod,它以二进制形式提供了一个库。

在项目级别,我们指定本地库的库搜索路径。当我们将二进制 Cocoapod 添加到此目标时,生成的 xcconfig 文件会设置 LIBRARY_SEARCH_PATHS 配置变量并与我们的项目设置冲突。我们看到这个警告:

[!] The `MyProject [Debug]` target overrides the `LIBRARY_SEARCH_PATHS` build setting defined in `Pods/Target Support Files/Pods-MyProject/Pods-MyProject.debug.xcconfig'. This can lead to problems with the CocoaPods installation
    - Use the `$(inherited)` flag, or
    - Remove the build settings from the target.

我们的解决方法是将 Cocoapods 库的路径放在我们的目标搜索路径中,并让它覆盖 xcconfig 中的路径。

为了避免覆盖,我们可以将 $(inherited) 标志放在 xcconfig 文件中,但这意味着我们需要将 xcconfig 放入源代码管理中并在运行 pod install 后重置它。

有没有正确的方法来做到这一点?

我们可以在 Podfile 中设置一些东西来添加路径或 $(inherited) 标志吗?

谢谢阅读!

最佳答案

您可以使用 post install hook 插入您自己的静态库或框架,而不是通过 pod 安装。
https://guides.cocoapods.org/syntax/podfile.html#post_install

关于ios - 如何告诉 Cocoapods 从当前目标继承 LIBRARY_SEARCH_PATHS?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/30360253/

10-15 05:57