对 MSVC 2010 项目中的每个文件运行预构建事件

发布于 2024-11-27 05:10:23 字数 216 浏览 0 评论 0原文

我正在尝试让 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 技术交流群。

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

发布评论

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

评论(1

轮廓§ 2024-12-04 05:10:23

无论如何,您必须为此编写 msbuild 脚本目标并作为项目的 BeforeBuild 目标运行。

当您构建包含多个文件的项目时,您可以列出
每个文件单独在项目文件中,或者您可以使用通配符
包含一个目录或一组嵌套目录中的所有文件。

在此处查看更多信息如何:选择要构建的文件

Anyway you have to write msbuild script target for this and run as BeforeBuild target of project.

When you build a project that contains several files, you can list
each file separately in the project file, or you can use wildcards to
include all the files in one directory or a nested set of directories.

See more here How to: Select the Files to Build

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