如果没有 Qt moc 编译器,我无法编译 Qt 图形代码吗?
我有一个要求,我有一堆 GUI 程序(游戏等),旨在在 Qt 库可用的任何地方(意味着任何操作系统)运行,即程序应该在 Windows、Linux 等上运行良好。
所以我计划编写一个程序可以在需要绘制某些内容时使用的接口。该界面将在各个操作系统中通用,并且将具有 Qt Graphics API(即 QPainter)来绘制内容。
我担心的是我需要 Qt moc 编译器,因为我将在界面代码中使用 Q_OBJECT。我希望程序能够使用 gcc 进行编译,而不需要任何额外的东西。当然,我需要 Qt 库来构建。
谢谢, 克里希纳
I have a requirement where I have a bunch GUI programs (games etc) that are intended to run wherever (meaning any OS) the Qt library is available i.e. the programs should run just fine on say Windows, Linux etc.
So I am planning to write an interface that the programs can use if they want something drawn. This interface will be common across operating systems and will have Qt Graphics APIs i.e. QPainter to draw stuff.
My concern is that I would need the Qt moc compiler because I will be using Q_OBJECT in my interface code. I would like the programs to compile with gcc and not require anything extra. Of course, I will need the Qt libraries to build.
Thanks,
Krishna
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
据我所知,编译 Qt 代码需要 MOC,因为整个代码中使用了 Q_OBJECT 和其他 Qt 宏,并且需要 MOC 来生成元对象。
From what i know MOC is required to compile Qt Code since Q_OBJECT and other Qt Macros are used throughout the code , and since MOC is needed to generate Meta-Objects.