寻找 Xcode 构建脚本以在目标之间复制文件
有没有人有一个脚本可以在构建过程中将文件从一个目标复制到另一个目标?
我有一个项目,其中一个目标用于构建应用程序,另一个目标用于构建库。该库需要包含应用程序中的大部分文件,我想避免手动复制它们。
Does anyone have a script that can copy files from one target to another, during the build process?
I have a project with one target that builds an app and another target that builds a library. The library needs to contain a large subset of the files from the app and I want to avoid manually copying them over.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 XCode 4.x 项目的构建阶段,您可以添加构建阶段来复制文件或仅运行脚本(为您进行复制)
请参阅此问题 添加-external-scripts-to-xcode4,了解更多详细信息
In the build phase of an XCode 4.x project you can add a build phase to either copy files or just run a script (that does your copying for you)
See this SO question adding-external-scripts-to-xcode4, for additional details