作者:企鹅田先生 | 来源:互联网 | 2023-09-01 15:37
对于Qt应用程序,要依赖Qt安装包里的一些库文件以及一些头文件,所以要先在配置好qt的环境才能执行下面的程序!
对于简单的界面程序,Hello,world!:
首先我们先有一个应用程序,helloworld.cpp:
#include
#include
int main(int argc,char *argv[])
{
QApplication app(argc,argv);
QLabel *label=new QLabel("
Hello"
"Qt!");
label->show();
return app.exec();
}
然后执行,qmake -project:生成一个文件,helloworld.pro:
继续执行,qmake helloworld.pro,会生成一个Makefile文件:省略Makefile的内容;
接着就执行make,此时,我们就能得到可执行程序,helloworld,直接执行,就能看到,一个helloworld的小图标!