项目错误:QT 中的未知模块:webkitwidgets

2021-12-09 00:00:00 qt5 qt c++ qtwebkit

我正在将代码从 qt4 移植到 qt5.我将以下行添加到我的 .pro 文件中,按照建议:

I am porting code from qt4 to qt5. I added the following line to my .pro file, as suggested:

QT += webkitwidgets

但是,当我运行 qmake 时,我收到此错误:

However, when I run qmake, I get the this error:

Project ERROR: Unknown module(s) in QT: webkitwidgets

我正在 Ubuntu 12.04 LTS 上开发并安装了 Qt 如所述.

I am developing on Ubuntu 12.04 LTS and installed Qt as described.

推荐答案

您需要安装 webkitwidgets 库.

You need to install the webkitwidgets library.

在 Ubuntu 上,在终端中试试这个:

On Ubuntu, try this in a terminal:

sudo apt-get install libqt5webkit5-dev

在 Fedora 上,该软件包具有不同的名称,因此请尝试:

On Fedora, the package has a different name, thus try:

sudo apt-get install qt5-qtwebkit-devel

相关文章