如何自动化 Qt moc?

发布于 2024-08-07 01:25:16 字数 188 浏览 9 评论 0原文

我必须从 Qt 命令提示符运行以下命令:qmake -project 然后 make 这将为我提供包含 Moc 文件的调试文件夹。
奇怪的是,这是我的电脑生成 moc_.cpp 文件的唯一方法。

那么如何自动执行这些命令的任务,这样我就不必再次使用这些命令了?

I have to run the following commands from Qt command prompt: qmake -project then make and this gives me the debug folder with the Moc file.
This is strangely the only way my PC will generate the moc_.cpp file.

So how can I automate the task of these commands so I don't have to use these commands again?

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

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

发布评论

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

评论(2

坚持沉默 2024-08-14 01:25:16

您不应多次运行 qmake -project-project 选项旨在为您提供一个模板项目文件供您编辑。与您在 IDE 中所做的等效操作是每次您想要构建时创建一个“新项目”。有了初始项目后,您应该手动编辑它,当有新文件时添加文件等。如果某些头文件发生更改,生成的 Makefile 会注意到它并对其调用 moc 以自动更新 moc_*.cpp 文件。因此:

  1. 当您开始处理项目时运行qmake -project
  2. 当您想要生成 Makefile 时,运行 qmake 。
  3. 当您想要构建项目时,运行make

You should not run qmake -project multiple times. The -project option is meant to provide you a template project file for you to edit. An equivalent of what you are doing in an IDE would be creating a "New Project" every time you want to build. After you have the initial project, you should edit it manually, add files when you have new files, etc. If some header file changes, the generated Makefile will notice it and call moc on it to update the moc_*.cpp file automatically. So:

  1. Run qmake -project when you start working on a project.
  2. Run qmake when you want to generate Makefiles.
  3. Run make when you want to build the project.
迟到的我 2024-08-14 01:25:16

我想你有两个选择。

  1. 从父 make 进程调用 qmake 并执行多级构建。 (“递归make”。)

  2. 从 makefile 中的规则直接运行元对象编译器

如果是第二种,则 使用元对象编译器可能会有所帮助。

I guess you have two choices.

  1. call qmake from a parent make process and do a multilevel build. ("Recursive make".)

  2. directly run the meta-object compiler from rules in your makefile

If the second, this page on using the meta-object compiler may help.

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