How to build only qtwebengine on Qt 6.7 with with proprietary codecs enabled?
-
Hi,
4 years ago I had same problem and solved it by my self and described full solution for future generations ;)
https://forum.qt.io/topic/111119/can-t-build-webengine-on-linux-with-proprietary-codecs
Now I'm migrating on Qt 6.7 and trying rebuild qtwebengine with same steps but seems that building qt 6 modules changed totally compared to Qt5. There is no.pro
file in qtwebengine so qmake is not used anymore.
I'm following this guide:
https://doc.qt.io/qt-6/configure-options.html
Seems that everything is done now by./configure
in root source dir. I don't see option to build only specific module. There is only-skip
option. Really I need to do./configure -webengine-proprietary-codecs -prefix /home/me/MyQt6 -skip qtwayland qtvirtualkeyboard qt3d .....
except qtwebengine to build it?
Regards