根据 Xcode 中的目标名称导入头文件
我有一个名为 TARGET_NAME 的预处理器常量,保存当前目标名称。我想根据目标名称导入某个头文件,例如,当 TARGET_NAME 设置为 App-Config 时,包含“App-Config.h”。我将如何实现这一目标?
I have a preprocessor constant called TARGET_NAME holding the current target name. I want to import a certain header file depending on the target name, e.g. include "App-Config.h" when TARGET_NAME is set to App-Config. How am I going to achieve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为你可以使用
我还没有使用过这个,但假设你的目标名称在 TARGET_NAME 中,这应该可以工作
I think you could use
I have not used this yet but assuming your target's name is in TARGET_NAME this should work