1. Ubuntu下安裝Qt集成環境
sudo apt-get install qt4-dev-tools qt4-doc qt4-qtconfig qt4-demos qt4-designer
2. 編寫一個簡單的Qt程序
生成一個簡單的窗口
#include <QApplication>3. 生成一個與平台無關的項目文件
www.linuxidc.com@ubuntu:~/MyTrain/Qt/Basic/hello$ qmake -project
4. 生成makefile文件
www.linuxidc.com@ubuntu:~/MyTrain/Qt/Basic/hello$ qmake hello.pro
5. 生成目標文件
www.linuxidc.com@ubuntu:~/MyTrain/Qt/Basic/hello$ make
6. 執行目標文件
www.linuxidc.com@ubuntu:~/MyTrain/Qt/Basic/hello$ ./hello
7. 運行結果