1、在Linux下的命令列編輯程式:[root@localhost root]# mkdir hello//mkdir命令建立一個hello目錄[root@localhost root]# cd hello//cd命令切換到剛才建立的hello目錄[root@localhost hello]# vi main.cpp//在hello目錄中用vi建立一個main.cpp檔案 將下面的程式碼輸入到main.cpp檔案中#include <QApplication>#include <QLabel>int main(int argc,char *argv[]){ QApplication app(argc,argv); QLabel *label = new QLabel(“Hello Qt”); Label->show(); return app.exec();}2、然後在命令列編譯程式:[root@localhost hello]# qmake –project//執行qmake –project,因為目錄是hello,因此在hello目錄下生成一個與平臺無關的專案檔案hello.pro,[root@localhost hello]# qmake hello.pro//執行qmake hello.pro專案檔案後,在hello目錄下生成一個與平臺有關的Makefile檔案。[root@localhost hello]# make//執行make進行編譯原始碼,並生成main.o目標檔案及hello執行檔案。[root@localhost hello]# ./hello//執行hello,就會彈出Hello Qt視窗,到此說明成功了。
1、在Linux下的命令列編輯程式:[root@localhost root]# mkdir hello//mkdir命令建立一個hello目錄[root@localhost root]# cd hello//cd命令切換到剛才建立的hello目錄[root@localhost hello]# vi main.cpp//在hello目錄中用vi建立一個main.cpp檔案 將下面的程式碼輸入到main.cpp檔案中#include <QApplication>#include <QLabel>int main(int argc,char *argv[]){ QApplication app(argc,argv); QLabel *label = new QLabel(“Hello Qt”); Label->show(); return app.exec();}2、然後在命令列編譯程式:[root@localhost hello]# qmake –project//執行qmake –project,因為目錄是hello,因此在hello目錄下生成一個與平臺無關的專案檔案hello.pro,[root@localhost hello]# qmake hello.pro//執行qmake hello.pro專案檔案後,在hello目錄下生成一個與平臺有關的Makefile檔案。[root@localhost hello]# make//執行make進行編譯原始碼,並生成main.o目標檔案及hello執行檔案。[root@localhost hello]# ./hello//執行hello,就會彈出Hello Qt視窗,到此說明成功了。