Reputation:
I am trying to use cmake with Qt, but I get the following error when I build.
QGLWidget: No such file or directory
In my CMakeLists.txt file I have:
set(CMAKE_INCLUDE_CURRENT_DIR ON)
set(CMAKE_AUTOMOC ON)
find_package(Qt5Widgets)
qt5_use_modules(SHWidget Widgets)
Upvotes: 4
Views: 7871
Reputation: 22366
As noted in the QtOpenGL
module docs:
Warning: Apart from the QGLWidget class, this module should not be used anymore for new code.
In other words you need to add the QtOpenGL
add-on module to your build.
Upvotes: 3