Visual C++预处理器定义

发布于 2024-08-29 11:17:55 字数 321 浏览 7 评论 0原文

有没有办法将 C++ 预处理器定义作为命令行参数传输到自定义预链接步骤过程调用中,或者以其他方式将它们导出到文件中?
例子: 比方说,我有一个 C++ 项目,在它的调试配置中我放置了一个预处理器定义,如 MAKUMBA_OBA=0x13
然后我添加自定义预链接步骤,该步骤执行一些 JavaScript

sarahjessicaparker.js /to tomsrhinoplasty $(MAKUMBA_OBA)

,如果它能正常工作,那就太好了,但我从来没有在我的 js 中获得第三个参数。所以问题是:如何将预处理器定义传递给 s 脚本?

Is there a way to transfer C++ preprocessor definitions into a custom pre-link step procedure call as a command-line parameter or export them into a file any other way?

Example:
Let's say, I have a c++ project, and in it's Debug configuration I put a preprocessor definition like MAKUMBA_OBA=0x13
Then I add custom pre-link step which executes some javascript like

sarahjessicaparker.js /to tomsrhinoplasty $(MAKUMBA_OBA)

It would be great, if it just worked, but I never get a third parameter in my js. So the question is: how to pass a preprocessor definition to s script?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

我一向站在原地 2024-09-05 11:17:55

这样的事情是没有办法的。唯一可接受的解决方案是分析构建配置文件名称并采取相应措施。

There is no way to do such a thing. The only acceptable solution is to analyze the build profile name and act accordingly.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文