1. 安装Qt集成环境
sudo apt-get install qt4-dev-tools qt4-doc qt4-qtconfig qt4-demos qt4-designer
2. 编写一个简单的Qt程序
生成一个简单的窗口
#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(); }
3. 生成一个与平台无关的项目文件
qmake -project
4. 生成makefile文件
qmake hello.pro
5. 生成目标文件
make
6. 执行目标文件
./hello
7. 运行结果