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

时间:2010-11-20 02:17:12

标签: linux qt qwebview

我刚刚开始使用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一次,以确保(我认为)看到了lib,但显然,这还不够。

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

3 个答案:

答案 0 :(得分:6)

[your_library] .pro 文件添加

QT       +=  webkit

然后

#include <QWebView>

应该足以获得此代码:

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

编译

希望这有帮助,尊重

答案 1 :(得分:4)

首先,对包含使用正确的案例:

#include <QWebView>

然后将正确的include路径添加到编译器:

g++ -c -I /usr/include/qt4 main.cpp

然后链接到相应的库:

g++ -o main.run main.o -lQtCore -lQtGui -lQtWebKit

如果这看起来太复杂了,请尝试使用qmake ...

答案 2 :(得分:1)

#include <QWebView> should work.