程序人生

C++与C#,java,php,安卓开发,行业软件,软件测试
  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理
QT  += opengl

这是因为直接调用了OpenGL的函数,需要在pro中增加以下库引用:
win32-g++ {
    LIBS += -lopengl32 -lglu32 -glmf32
}
win32-msvc*{
    LIBS += opengl32.lib glu32.lib glmf32.lib
}


qt建议使用:
QOpenGLFunctions.

出现error: undefined reference to `gluLookAt@72' 这个是缺 -lglu32