如何在一行中添加多个SEARCH_PATHS?
我正在尝试
HEADER_SEARCH_PATHS = " $(./xyz/abd/)" + " $(./xyz/efg/)"
使用 xcode 中的 xconfig 文件来保留项目设置的一个位置。
但我不知道如何将多个路径放在一起?有人可以帮我解决这个问题吗?
谢谢
I am trying something like
HEADER_SEARCH_PATHS = " $(./xyz/abd/)" + " $(./xyz/efg/)"
with xconfig file in xcode for keeping one location for project settings.
But I dont know how to put multiple paths together? Can someone help me on this?
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个:
另外,下次您不知道
xcconfig
文件的语法时,只需转到构建设置窗格并使用复制命令 (Cmd-C) 并将其粘贴到您的文件中。Try this:
Also, next time you don't know the syntax for a bit of
xcconfig
file, just go to build settings pane and use the copy command (Cmd-C) and paste it on your file.