aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@qt.io>2017-01-25 14:14:21 +0100
committerFriedemann Kleint <Friedemann.Kleint@qt.io>2017-01-25 14:32:57 +0000
commit9305a4e5db9ce26db9a2510f5230636122d98ffe (patch)
tree0d7dedd523913b8c3123ca2d67fee160d76ce941 /src
parent1b8836e00da53872bd3c285e5ab5ac8344ccd46c (diff)
Fix build of the QML import with -no-opengl
Add -luser32 in that case. Task-number: QTBUG-58415 Change-Id: I052dac8b44409f60b461e93f463d0e4854718a57 Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io>
Diffstat (limited to 'src')
-rw-r--r--src/imports/winextras/winextras.pro2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/imports/winextras/winextras.pro b/src/imports/winextras/winextras.pro
index 0d6ec55..19f8d2b 100644
--- a/src/imports/winextras/winextras.pro
+++ b/src/imports/winextras/winextras.pro
@@ -41,6 +41,6 @@ OTHER_FILES += \
JumpListDestination.qml \
JumpListSeparator.qml
-qtConfig(dynamicgl):LIBS_PRIVATE += -luser32
+!qtHaveModule(opengl)|qtConfig(dynamicgl):LIBS_PRIVATE += -luser32
load(qml_plugin)