所以我可以告诉 CocoaPod的 pod install 项目目录的位置(使用 --project-directory )。它显然会寻找 Podfile 、*xcproject/ 并在那里创建或更新 *.xcworkspace/ 。
是否还有一个选项可以告诉它现有工作空间位于与该项目或当前目录不同的目录中?
我问的原因在 this 中有描述相关问题。
Best Answer-推荐答案 strong>
CocoaPods 文档状态:
workspace
Specifies the Xcode workspace that should contain all the
projects.
If no explicit Xcode workspace is specified and only one project exists in the same directory as the Podfile, then the name of that project is used as the workspace’s name.
Example:
workspace '../MyProject'
workspace 'folder/AnotherProject'
关于ios - 我可以告诉 pod install Xcode 项目和工作区位于不同的目录中吗?,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/28499347/
|