Xcode/GCC 预定义宏的目标名称?
我想知道应用程序的目标名称是否有 Xcode 或 GCC 预处理器符号。
例如,如果我正在构建一个名为“MonkeyChicken”的应用程序,是否有一个预处理器符号可以
printf( __TARGET_NAME__ )
输出:
MonkeyChicken
I was wondering if there is an Xcode or GCC preprocessor symbol for the target name of the application.
For example if I'm building an application called "MonkeyChicken", is there a preprocessor symbol such that
printf( __TARGET_NAME__ )
outputs:
MonkeyChicken
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不相信有任何内置的(gcc 不知道你在编译文件时正在构建什么),但你总是可以在 xcconfig 文件中使用
GCC_PREPROCESSOR_DEFINITIONS
创建一个(你 < em>正在使用xcconfig,对吧? )这样的事情应该像你上面指出的那样工作:I don't believe there is any built-in (gcc has no idea what you're building when you compile a file), but you can always create one using
GCC_PREPROCESSOR_DEFINITIONS
in an xcconfig file (you are using xcconfig, right?) Something like this should work as you indicate above: