如果没有 Qt moc 编译器,我无法编译 Qt 图形代码吗?

发布于 2024-11-05 13:10:25 字数 294 浏览 1 评论 0原文

我有一个要求,我有一堆 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 技术交流群。

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

发布评论

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

评论(1

瞄了个咪的 2024-11-12 13:10:25

据我所知,编译 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.

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