このコード
#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を使用しています