Re: [Interest] QtWebEngine missing in Qt6.2.4 ?

2022-04-08 Thread Thiago Macieira
On Friday, 8 April 2022 10:48:44 PDT Alexander Carôt wrote: > If anyone has an idea how to approach this please let me know. QRegExp is no longer part of QtCore. Switch to QRegularExpression. -- Thiago Macieira - thiago.macieira (AT) intel.com Software Architect - Intel DPG Cloud Engineering

Re: [Interest] QtWebEngine missing in Qt6.2.4 ?

2022-04-08 Thread Alexander Carôt
Hej Sze and all, thanks a lot ! So obviously the current QtBrowser codebase works with Qt5 only at the moment – at least I could successfully build it with 5.15. Now I tried porting it to Qt6 by basically replacing any QtWebEngine to QtWebEngineQuick which so far worked out well. However, now t

Re: [Interest] QtWebEngine missing in Qt6.2.4 ?

2022-04-08 Thread Thiago Macieira
On Friday, 8 April 2022 09:37:11 PDT Allan Sandfeld Jensen wrote: > Not sure we can do that with qmake or most other build systems :/ Edit qt.prf, which is where that variable is processed. https://code.qt.io/cgit/qt/qtbase.git/tree/mkspecs/features/qt.prf -- Thiago Macieira - thiago.macieira (A

Re: [Interest] QtWebEngine missing in Qt6.2.4 ?

2022-04-08 Thread Allan Sandfeld Jensen
On Freitag, 8. April 2022 16:38:51 CEST Sze Howe Koh wrote: > It is now "QT += webenginequick" (in contrast to "QT += > webenginewidgets"): > https://doc.qt.io/qt-6/qtwebenginequick-module.html > > This is a kind of source compatibility break; it would be nice if > there were deprecation warnings

Re: [Interest] QtWebEngine missing in Qt6.2.4 ?

2022-04-08 Thread Sze Howe Koh
It is now "QT += webenginequick" (in contrast to "QT += webenginewidgets"): https://doc.qt.io/qt-6/qtwebenginequick-module.html This is a kind of source compatibility break; it would be nice if there were deprecation warnings instead of an outright error. Regards, Sze-Howe On Fri, 8 Apr 2022 at

Re: [Interest] QtWebEngine missing in Qt6.2.4 ?

2022-04-08 Thread Alexander Carôt
P.S.: The question arises from me trying to compile the QtWebBrowser: https://code.qt.io/cgit/qt-apps/qtwebbrowser.git/ which includes the module via QT += qml quick webengine but out of the box it does not find the module: Project ERROR: Unknown module(s) in QT: webengine -- http://www.car

[Interest] QtWebEngine missing in Qt6.2.4 ?

2022-04-08 Thread Alexander Carôt
Hello all, I just installed Qt6.2.4 for OSX (12.2.1 Monterey) with any module, however, when trying to use QtWebEngine I realize it's not there: Project ERROR: Unknown module(s) in QT: webengine Did I possibly miss anything or is any further action required ? Thanks in advance for letting me k