1. 程式人生 > >Qt執行簡易過程(在x86格式下)

Qt執行簡易過程(在x86格式下)

對於Qt應用程式,要依賴Qt安裝包裡的一些庫檔案以及一些標頭檔案,所以要先在配置好qt的環境才能執行下面的程式!

對於簡單的介面程式Helloworld!:

首先我們先有一個應用程式,helloworld.cpp

#include<QApplication>

#include<QLabel>

int main(int argc,char *argv[])

{

QApplication app(argc,argv);

QLabel *label=new QLabel("<h2><i>Hello</i>"

"<font color=red>Qt!</font></h2>");

label->show();

return app.exec();

}

然後執行,qmake -project生成一個檔案,helloworld.pro

繼續執行,qmake helloworld.pro會生成一個Makefile檔案:省略Makefile的內容;

接著就執行make此時,我們就能得到可執行程式,helloworld直接執行,就能看到,一個helloworld的小圖示!