diff options
| author | Michal Klocek <michal.klocek@qt.io> | 2021-02-10 12:02:57 +0100 |
|---|---|---|
| committer | Michal Klocek <michal.klocek@qt.io> | 2021-04-13 09:32:55 +0200 |
| commit | 919dd97e835f469609a0710eb91f829a6d70e88c (patch) | |
| tree | 90c9044585d8f9b71776a4cbf1f4ef4a34a7076b /examples/examples.pro | |
| parent | 29d45bf2d105b43d8cedc923869960091771d2a1 (diff) | |
Fix 'WebEngine' ambiguity for Qt6
'WebEngine' is a qml module, however name itself
is ambiguous. Thefore now with Qt6 and with cmake
port name the module as WebEngineQuick.
Change-Id: I948672dd5d389a01c6a31ec871459164fd989c0f
Reviewed-by: Allan Sandfeld Jensen <allan.jensen@qt.io>
Diffstat (limited to 'examples/examples.pro')
| -rw-r--r-- | examples/examples.pro | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/examples.pro b/examples/examples.pro index a0245a869..f36b98904 100644 --- a/examples/examples.pro +++ b/examples/examples.pro @@ -1,13 +1,13 @@ include($$QTWEBENGINE_OUT_ROOT/src/buildtools/qtbuildtools-config.pri) -include($$QTWEBENGINE_OUT_ROOT/src/webengine/qtwebengine-config.pri) +include($$QTWEBENGINE_OUT_ROOT/src/webenginequick/qtwebenginequick-config.pri) include($$QTWEBENGINE_OUT_ROOT/src/webenginewidgets/qtwebenginewidgets-config.pri) include($$QTWEBENGINE_OUT_ROOT/src/pdf/qtpdf-config.pri) include($$QTWEBENGINE_OUT_ROOT/src/pdfwidgets/qtpdfwidgets-config.pri) QT_FOR_CONFIG += \ buildtools-private \ - webengine-private \ + webenginequick-private \ webenginewidgets-private \ pdf-private \ pdfwidgets-private @@ -15,7 +15,7 @@ QT_FOR_CONFIG += \ TEMPLATE=subdirs qtConfig(build-qtwebengine-core):qtConfig(webengine-core-support) { - qtConfig(webengine-qml): SUBDIRS += webengine + qtConfig(webengine-quick): SUBDIRS += webengine qtConfig(webengine-widgets): SUBDIRS += webenginewidgets } |
