Kal
Kal

Reputation: 2299

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?

Upvotes: 13

Views: 16891

Answers (1)

Luca Carlon
Luca Carlon

Reputation: 9976

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.

Upvotes: 15

Related Questions