系统相关
首页 > 系统相关> > 如何在Linux中包含Qt库(qwebview.h)?

如何在Linux中包含Qt库(qwebview.h)?

作者:互联网

我刚刚开始使用Qt库.我正在尝试使用以下标头编译我的第一个测试脚本:

#include <qwebview.h>

但它不会编译:

g++ main.cpp -o run.main
main.cpp:2:22: error: qwebview.h: No such file or directory
main.cpp: In function ‘int main()’:
main.cpp:10: error: ‘QWebView’ was not declared in this scope

我的Linux Kubuntu机器上安装了libs:

$locate qwebview
/usr/include/qt4/Qt/qwebview.h
/usr/include/qt4/QtWebKit/qwebview.h
/usr/lib/qt4/plugins/designer/libqwebview.so

我运行ldconfig一次以确保(我认为)可以看到libs,但显然,这还不够.

如何设置我的机器以便我可以开始使用Qt编译软件?

解决方法:

在你[your_library] .pro文件中添加

QT       +=  webkit

然后

#include <QWebView>

应该足以获得此代码:

QWebView *view = new QWebView(parent);
view->load(QUrl("http://qt.nokia.com/"));

编译

希望这有帮助,问候

标签:linux,qt,qwebview
来源: https://codeday.me/bug/20190717/1483724.html