From 6a5dc7eb3fc3d885a7b0e9ee26f7a9b29d7ae2d1 Mon Sep 17 00:00:00 2001 From: Rohan McGovern Date: Mon, 30 Jul 2012 13:45:51 +1000 Subject: tests: fixed check for QtOpenGL contains(QT_CONFIG,opengl) tells whether Qt itself is able to use OpenGL, which is not the same thing as whether the QtOpenGL API is available. Make the check correct; fixes compilation when Qt is configured with -no-widgets (which also disables QtOpenGL). Change-Id: Iaa296c2b10650971ef4846f8bc6f44761fadcf7c Reviewed-by: Toby Tomkins --- tests/auto/auto.pro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/auto') diff --git a/tests/auto/auto.pro b/tests/auto/auto.pro index c11a609b81..b3906cc247 100644 --- a/tests/auto/auto.pro +++ b/tests/auto/auto.pro @@ -18,7 +18,7 @@ SUBDIRS += \ wince*: SUBDIRS -= printsupport cross_compile: SUBDIRS -= tools -!contains(QT_CONFIG, opengl): SUBDIRS -= opengl +isEmpty(QT.opengl.name): SUBDIRS -= opengl !unix|embedded|!contains(QT_CONFIG, dbus): SUBDIRS -= dbus contains(QT_CONFIG, no-widgets): SUBDIRS -= widgets printsupport !contains(QT_CONFIG, concurrent): SUBDIRS -= concurrent -- cgit v1.2.3