user2670468
user2670468

Reputation:

cmake error: QGLWidget: No such file or directory

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

Answers (1)

cmannett85
cmannett85

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

Related Questions