linux下qt开发环境安装
qt ubuntu 测试 ide 平台
linux环境:ubuntu 10.4.2
我的qt是4.7.4版本的,现在最新的是4.80
去ftp://ftp.qt.nokia.com/qt/source/ 下载qt源码:qt-everywhere-opensource-src-4.7.4.tar.gz
解压:
1. tar zvxf qt-everywhere-opensource-src-4.7.4.tar.gz
进入到解压目录:
1. cd qt-everywhere-opensource-src-4.7.4
查看安装的帮助文件
1. cat INSTALL
里面有x11平台的安装链接http://qt.nokia.com/doc/4.7/install-x11.html,到这个链接,里面有全部的安装教程。
注意如果没有装X11的库,可能会在中途编译出现错误
安装完成后,写个简单的hell,world来测试下
1. 1 #include <QApplication>
2. 2 #include <QtGui/QLabel>
3. 3 #include <QString>
4. 4
5. int main(int argc, char *argv[])
6. 6 {
7. 7 QApplication a(argc, argv);
8. 8
9. "hello, qt");
10. 10 QLabel *label = new QLabel(qStr);
11. 11 label->show();
12. 12
13. 13 return a.exec();
14. 14 }
qmake -project //生成.pro工程文件
qmake //生成makefile
make
运行./hello,可以看到hell,qt
qt还有一个轻量级的IDE,我之前下的是qt-creator-linux-x86-opensource-2.3.1.bin,./qt-creator-linux-x86-opensource-2.3.1.bin运行就可以安装,安装完成后,同样可以新建个工程测试下。
至此qt开发环境就完成设置了。