这段代码
#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