|
本帖最后由 xiang8000 于 2011-1-14 00:11 编辑
在工程文件中加入了QT +=webkit,然后在PC中编译顺利通过,并且执行程序显示网页正常,然后将工程用交叉编译器编译,编译途中出现这个错误提示:
怎么回事?看样子有点像环境变量没找到,但是同路径下的其他头文件都找到了的,唯独这个就找不到,怎么个情况?
main.cpp:4:22: error: qwebview.h: No such file or directory
main.cpp:19: error: ISO C++ forbids declaration of 'QWebView' with no type
main.cpp:19: error: expected ';' before '*' token
main.cpp: In constructor 'a::a()':
main.cpp:13: error: 'w' was not declared in this scope
main.cpp:13: error: expected type-specifier before 'QWebView'
main.cpp:13: error: expected `;' before 'QWebView'
main.cpp: In function 'int main(int, char**)':
main.cpp:26: error: 'class a' has no member named 'w'
make: *** [main.o] 错误 1
这是我的代码:就这么一点点测试用
************main.cpp***************
#include <QApplication>
#include <QDialog>
#include <QGridLayout>
#include <qwebview.h> //即使换成 #include <QWebView> 也会提示一样的错误
#include <QUrl>
class a:public QDialog
{
public:
a()
{
l=new QGridLayout(this);
w=new QWebView; //就这里,该死的这句交叉编译出错!
w->setUrl(QUrl("http://www.baidu.com"));
}
public:
int x;
QGridLayout *l;
QWebView *w;
};
int main(int args,char *argv[])
{
QApplication app(args,argv);
a aa;
aa.l->addWidget(aa.w);
aa.show();
return app.exec();
}
************net.pro***************
QT += webkit
SOURCES += \
main.cpp
FORMS +=
HEADERS += |
|