I am porting code from qt4 to qt5. I added the following line to my .pro file, as suggested:
.pro
QT += webkitwidgets
However, when I run qmake, I get the this error:
qmake
Project ERROR: Unknown module(s) in QT: webkitwidgets
I am developing on Ubuntu 12.04 LTS and installed Qt as described.
You need to install the webkitwidgets library.
On Ubuntu, try this in a terminal:
sudo apt-get install libqt5webkit5-dev
On Fedora, the package has a different name, thus try:
sudo apt-get install qt5-qtwebkit-devel
2.1m questions
2.1m answers
60 comments
57.0k users