0

我对 QGLviewer 有疑问(同样的问题,在 linux 和 windows 上都是)。

为了安装 QGLviewer,我遵循了这些步骤http://www.libqglviewer.com/installWindows.html

然后我尝试编译他们的示例项目,但失败了。我得到的是:

问题:

:-1: error: Use qmake LIB_DIR=/path/to/QGLViewer/libQGLViewerd2.a

编译输出:

22:03:04: Running steps for project animation...
22:03:04: Starting: "C:\Qt\Qt5.4.1\5.4\mingw491_32\bin\qmake.exe" C:\Users\Bartek\Desktop\libQGLViewer-2.6.1\examples\animation\animation.pro -r -spec win32-g++
Project MESSAGE: Unable to find libQGLViewer2.a in C:\Windows\System32
Project ERROR: Use qmake LIB_DIR=/path/to/QGLViewer/libQGLViewer2.a
22:03:04: The process "C:\Qt\Qt5.4.1\5.4\mingw491_32\bin\qmake.exe" exited with code 3.
Error while building/deploying project animation (kit: Desktop Qt 5.4.1 MinGW 32bit)
When executing step "qmake"
22:03:04: Elapsed time: 00:00.

即使我将生成的 QGLViewer2.dll 和 QGLViewer2.a 复制到 C:\Windows\System32

你知道我应该怎么做才能完成这项工作吗?

我正在使用 QT Creator 3.3.1、QT 5.4.1

视窗 7 x64

感谢您的任何建议!

4

1 回答 1

0

解决方案:

您必须将以下行添加到您的 *.pro 文件中

LIB_DIR = C:\Qt\Libs

这是您保存 libQGLviewer 文件的位置的路径(因此 libQGLviewer2.dll、libQGLviewer2.a、libQGLviewerd2.a)

希望能帮助到你。

于 2015-06-07T08:16:26.000 回答