如何自动化 Qt moc?
我必须从 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您不应多次运行
qmake -project
。-project
选项旨在为您提供一个模板项目文件供您编辑。与您在 IDE 中所做的等效操作是每次您想要构建时创建一个“新项目”。有了初始项目后,您应该手动编辑它,当有新文件时添加文件等。如果某些头文件发生更改,生成的 Makefile 会注意到它并对其调用 moc 以自动更新 moc_*.cpp 文件。因此:qmake -project
。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:qmake -project
when you start working on a project.qmake
when you want to generate Makefiles.make
when you want to build the project.我想你有两个选择。
从父 make 进程调用 qmake 并执行多级构建。 (“递归make”。)
从 makefile 中的规则直接运行元对象编译器
从
如果是第二种,则 使用元对象编译器可能会有所帮助。
I guess you have two choices.
call qmake from a parent make process and do a multilevel build. ("Recursive make".)
directly run the meta-object compiler from rules in your makefile
If the second, this page on using the meta-object compiler may help.