对 MSVC 2010 项目中的每个文件运行预构建事件
我正在尝试让 Visual Studio 2010 执行 FOR 循环 - 就像可以在 .bat 文件中完成的循环一样 - 作为预构建事件命令...到目前为止运气不佳。
长话短说,我试图让 Qt 的 moc.exe 在构建时迭代我的所有头文件。如果这项工作可行,另一件事就是将生成的 moc_*.cpp 文件包含在构建过程中,但我现在还没有完全做到这一点。
有什么想法吗? 多谢 !
I'm trying to get Visual Studio 2010 to execute a FOR loop - just like the ones that can be done in a .bat file - as a pre-build event command... No luck this far.
Long story short, I'm trying to get Qt's moc.exe to iterate on all my header files at build time. If this work, another thing to achieve would be to include the generated moc_*.cpp files in the build process, but I'm not quite there right now.
Any idea ?
Thanks a lot !
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
无论如何,您必须为此编写 msbuild 脚本目标并作为项目的
BeforeBuild
目标运行。在此处查看更多信息如何:选择要构建的文件
Anyway you have to write msbuild script target for this and run as
BeforeBuild
target of project.See more here How to: Select the Files to Build