18d49808db
With disabled gui module qmake in the directory examples/gui and examples/widgets failes with: Project ERROR: Could not find feature opengl. Fix this by protecting 'qtConfig(opengl)' by 'qtHaveModule(gui)' as already done in examples/examples.pro. Task-number: QTBUG-60488 Change-Id: Ia842124e818e8c81d41d2b8e3b8905bf1dee58ce Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@qt.io>
11 lines
212 B
Prolog
11 lines
212 B
Prolog
requires(qtHaveModule(gui))
|
|
|
|
TEMPLATE = subdirs
|
|
QT_FOR_CONFIG += gui
|
|
CONFIG += no_docs_target
|
|
|
|
SUBDIRS += analogclock
|
|
SUBDIRS += rasterwindow
|
|
qtHaveModule(gui):qtConfig(opengl): \
|
|
SUBDIRS += openglwindow
|