summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichal Klocek <michal.klocek@qt.io>2022-05-19 13:57:16 +0200
committerMichal Klocek <michal.klocek@qt.io>2022-05-24 23:27:49 +0200
commitc7e716ef1ffd63a8ab1f4dbf879230849eb3b505 (patch)
treee7a1bde57ab3527861273ec5f32a321026d0c4c4
parent43082239d440a9a33bb2650ea5487836486983b6 (diff)
Fix top level build with no widgetv5.15.10-vxworks-ltsv5.15.10-lts
It seems that condition module.widgets is not evaluated in time when configured with "-no-widget" to be picked up by the webengine when doing 'top level' build. Use 'widget' feature instead. Fixes: QTBUG-103618 Change-Id: I881e4ba899d376690984c4866336a03d7dae246c Reviewed-by: Jörg Bornemann <joerg.bornemann@qt.io>
-rw-r--r--src/pdfwidgets/configure.json2
-rw-r--r--src/webenginewidgets/configure.json2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/pdfwidgets/configure.json b/src/pdfwidgets/configure.json
index b33f08555..bef08ef72 100644
--- a/src/pdfwidgets/configure.json
+++ b/src/pdfwidgets/configure.json
@@ -13,7 +13,7 @@
"pdf-widgets": {
"label": "Support Qt PDF Widgets",
"purpose": "Provides Qt PDF Widgets support.",
- "condition": "module.widgets",
+ "condition": "features.widgets",
"output": [ "privateFeature" ]
}
},
diff --git a/src/webenginewidgets/configure.json b/src/webenginewidgets/configure.json
index a27faf78d..8aa41abce 100644
--- a/src/webenginewidgets/configure.json
+++ b/src/webenginewidgets/configure.json
@@ -13,7 +13,7 @@
"webengine-widgets": {
"label": "Support Qt WebEngine Widgets",
"purpose": "Provides WebEngine Widgets support.",
- "condition": "module.widgets",
+ "condition": "features.widgets",
"output": [ "privateFeature" ]
}
},