在我的项目中,我们链接了一些我们保持源代码管理的二进制库。我们还使用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
放入源代码控制中并在运行后重置{ {1}}。
有没有正确的方法呢?
我们可以在pod install
中添加路径或Podfile
标记吗?
感谢阅读!
答案 0 :(得分:1)
您可以使用post install hook来插入您自己不通过pod安装的静态库或框架。 https://guides.cocoapods.org/syntax/podfile.html#post_install