为 Qt 安装 OpenGL
我刚刚在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您确定您完全按照此内容进行操作吗?您需要在 pro 文件中包含
并设置QT += opengl
选项。Are you sure you followed this to the letter? You need to include
<QtOpenGL>
and set theQT += opengl
option in your pro file.您使用什么工具链? (Visual Studio、Qt Creator/g++)您需要在项目设置中的某个位置指定要使用 QtOpenGL 模块。这将导致您的 .pro 文件中出现类似于以下内容的行:
这导致 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:
This causes qmake to add the proper include path when invoking the compiler (I believe).
将 QT += opengl 行添加到 .pro 文件中
added the line QT += opengl to the .pro file