此代码
#include <QtWidgets/QApplication>
#include <QLabel>
int main(int argc,char *argv[])
{
QApplication app(argc,argv);
QLabel *label = new QLabel("my first app");
label->show();
return app.exec();
}
导致错误:
QLabel:没有这样的目录
我在Windows中使用Qt 5.0.1
答案 0 :(得分:2)
更改
#include <QLabel>
到#include <QtWidgets/QLabel>
这是QLabel
实际存在的位置(如果这是您想要的QLabel
)
答案 1 :(得分:0)
在.pro文件中放置QT + =小部件。