win下qt5.1 通过空项目纯源码编写项目时 -- QApplication: No such file or directory 问题的解决方法

通过空项目,添加cpp的方法编写qt-gui程序时,构建时会出现找不到QApplication头文件的错误,自己找了半天,基本上全是针对linux下的解决方法,后来在http://blog.csdn.net/ccf19881030/article/details/8648220找到了解决方法,需要在pro文件中添加 QT +=widgets,因为在qt5中所有的组件都是在widgets模块中定义的

//main.cpp
//#include<QtGui>
#include<QApplication>
#include<QLabel>
#include<QDialog>
int main(int argc,char** argv){
    QApplication q(argc,argv);

    QDialog * dd=new QDialog();
    QLabel * label=new QLabel(dd);
    label->setText("Hello World");
    QSize ss(200,200);
    dd->resize(ss);
    dd->show();
    return q.exec();
}


 

 

你可能感兴趣的:(File,or,No,such,QT5.1,dire,QApplication,qt_gui,qt空项目)