我刚刚开始使用 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 机器上确实安装了这些库:
$ locate qwebview
/usr/include/qt4/Qt/qwebview.h
/usr/include/qt4/QtWebKit/qwebview.h
/usr/lib/qt4/plugins/designer/libqwebview.so
我跑了ldconfig
一次以确保(我认为)可以看到这些库,但显然,这还不够。
如何设置我的机器以便我可以开始使用 Qt 编译软件?