Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Unknown module(s) in QT: webkit

Added QT += network webkit and I tried just QT += webkit to the .pro solution file and ran qmake from inside the QtCreator and got this error:

error: Unknown module(s) in QT: webkit

I really need to make use of these includes:

#include <QWebView>
#include <QUrl>

Any ideas?

like image 621
Kal Avatar asked Nov 22 '12 15:11

Kal


1 Answers

If you say you installed the beta version I suppose you installed Qt version 5. In that case webkit module does not exist anymore. You need webkitwidgets:

QT += webkitwidgets

That will add the module needed to use QWebView. QUrl is in the core module, so you don't need the network module.

like image 191
Luca Carlon Avatar answered Oct 06 '22 15:10

Luca Carlon