为 Qt 安装 OpenGL

发布于 2024-09-15 16:09:27 字数 158 浏览 3 评论 0原文

我刚刚在 windows 7 上安装了 Qt 4。我现在有点困惑 如何安装 OpenGL 以便它与 QT 一起使用?有 OpenGL 的安装程序吗? Qt 文档。说它支持OpenGL,但是当我包含QTOpenGL并构建时,编译器会发出“没有这样的文件或目录”的错误,

感谢您的提前回复!

I just have installed Qt 4 on windows 7. I am now in a bit of a confusion
How do I get to install OpenGL so that it works with QT? Is there an installer for OpenGL?
Qt docs. say it has support for OpenGL, but when I include QTOpenGL and build, the compiler issues an error of "No such file or directory"

Thanks for the reply in advance!

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

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

发布评论

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

评论(3

迷雾森÷林ヴ 2024-09-22 16:09:28

您确定您完全按照此内容进行操作吗?您需要在 pro 文件中包含 并设置 QT += opengl 选项。

Are you sure you followed this to the letter? You need to include <QtOpenGL> and set the QT += opengl option in your pro file.

爱你不解释 2024-09-22 16:09:28

您使用什么工具链? (Visual Studio、Qt Creator/g++)您需要在项目设置中的某个位置指定要使用 QtOpenGL 模块。这将导致您的 .pro 文件中出现类似于以下内容的行:

QT = core gui opengl

这导致 qmake 在调用编译器时添加正确的包含路径(我相信)。

What tool chain are you using? (Visual Studio, Qt Creator/g++) You need to specify somewhere in your project settings that you want to use the QtOpenGL module. This will result in a line in your .pro file similar to this:

QT = core gui opengl

This causes qmake to add the proper include path when invoking the compiler (I believe).

那小子欠揍 2024-09-22 16:09:28

将 QT += opengl 行添加到 .pro 文件中

added the line QT += opengl to the .pro file

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