Re: QtWebkit
-
Hi all,
I am trying to build one qml project developed by other team but when i try to build it, it build without any error but when i try to run, it gives module "QtWebKit" is not installed.
Can anyone tell me what is this error and what i need to do to resolve it?
Thanks -
@Naveen_D Well it was deprecated since Qt 5.6
https://wiki.qt.io/New_Features_in_Qt_5.6#Removed_Modules -
Hi all,
I am trying to build one qml project developed by other team but when i try to build it, it build without any error but when i try to run, it gives module "QtWebKit" is not installed.
Can anyone tell me what is this error and what i need to do to resolve it?
Thanks@Naveen_D
About what qml project are we talking here? A QML extension plugin which internally uses QtWebkit?
QtWebkit has been removed from (IIRC) Qt 5.6 onwards and needs to be built by yourself if needed.
What system are you on? -
@Naveen_D Well it was deprecated since Qt 5.6
https://wiki.qt.io/New_Features_in_Qt_5.6#Removed_Modules -
@Naveen_D As the docs says build that Qt module yourself.
With Qt 5.6 the following modules are no longer part of the release packages, but users can still build them from source
-
@Naveen_D Clone https://github.com/qt/qtwebkit and try building. But as per the docs it requires some extra packages too. So I would suggest you to start building
Qt 5.7first and then using this as base try building webkit.Btw. instead of trying this wouldn't it be possible to port your application to use
WebEngine? -
-
@Naveen_D Clone https://github.com/qt/qtwebkit and try building. But as per the docs it requires some extra packages too. So I would suggest you to start building
Qt 5.7first and then using this as base try building webkit.Btw. instead of trying this wouldn't it be possible to port your application to use
WebEngine? -
@Naveen_D Start reading from here.
Also there is a porting guide but it is for C++ widgets.
How big is your application?