预处理器定义/定义的符号,取决于(或继承自)解决方案而不是项目?
在vs2008的项目设置中你可以定义自定义符号,例如DEBUG或WIN32。
问题是:我在不同的解决方案中使用一个项目(静态库),并且我想在每个解决方案中使用不同的预定义符号构建相同的 vcproj。
有没有办法定义“解决方案范围的符号”?或者我可以以某种方式让项目从解决方案级别或其他级别继承预处理器定义吗?
In vs2008's project settings you can define custom symbols, such as DEBUG or WIN32.
The thing is: I am using one project (a static library) in different solutions, and I'd like to build the same vcproj with a different predefined symbol in each solution.
Is there some way to define a 'solution-wide symbol'? Or can I somehow have a project inherit preprocessor defines from solution level or anything?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
解决方案不具有类似的用户可设置属性。但可以获得您想要的效果,正如之前关于同一主题的 StackOverflow 问题的答案中所解释的那样,“您可以在加载的项目上创建 VC++ 解决方案集预处理器 #defines 吗?”
Solutions don't have user-settable properties quite like that. But it is possible to get the effect you want, as was explained in the answers to this previous StackOverflow question on the same topic, "Can you make a VC++ Solution set preprocessor #defines on loaded projects?"