Ubuntu 12.04 LTS 64位搭建Qt4终端编译环境

Ubuntu 12.04下采用apt-get的方法安装Qt4。

First: sudo apt-get install libqt4-dev libqt4-dbg libqt4-gui libqt4-sql qt4-dev-tools qt4-doc qt4-designer qt4-qtconfig

Second: 测试  个人实例

在桌面创建文件夹qt4hello(mkdir qt4hello)---> vim qthello.cpp --->输入:以下代码

#include <QApplication>
#include <QPushButton>
int main(int argc, char *argv[])
{
                QApplication app(argc, argv);
                QPushButton hello("Hello ubuntu12.04 LTS!");
                hello.resize(190, 150);
                hello.show();
                return app.exec();
        }

----> 保存(:wq)--->qmake -project(生成QT项目)--->qmake(生成makefile文件)--->make 出现以下代码

g++ -c -m64 -pipe -O2 -Wall -W -D_REENTRANT -DQT_WEBKIT -DQT_NO_DEBUG -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/share/qt4/mkspecs/linux-g++-64 -I. -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtGui -I/usr/include/qt4 -I. -I. -o qthello.o qthello.cpp
g++ -m64 -Wl,-O1 -o qt4hello qthello.o    -L/usr/lib/x86_64-linux-gnu -lQtGui -lQtCore -lpthread

--->./qt4hello(文件夹的名称)

Qt 的详细介绍请点这里
Qt 的下载地址请点这里

推荐阅读:

Ubuntu 环境下Gtk与QT编译环境安装与配置

Linux系统下QT环境搭建

Ubuntu下QT控制台程序无法运行的解决方案以及XTerm的配置方法

Ubuntu 10.04下QT4.7.4移植详解

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/19013.html