我遇到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
Windows 7 x64
感谢您提出任何建议!
答案 0 :(得分:0)
<强>解决方案:强>
您必须将以下行添加到* .pro文件
LIB_DIR = C:\Qt\Libs
这是保存libQGLviewer文件的地方的路径(所以libQGLviewer2.dll,libQGLviewer2.a,libQGLviewerd2.a)
希望它有所帮助。