感谢支持
我们一直在努力

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编译环境安装与配置 http://www.linuxidc.com/Linux/2013-08/88539.htm

Linux系统下QT环境搭建 http://www.linuxidc.com/Linux/2013-07/87576.htm

Ubuntu下QT控制台程序无法运行的解决方案以及XTerm的配置方法 http://www.linuxidc.com/Linux/2013-06/86244.htm

Ubuntu 10.04下QT4.7.4移植详解 http://www.linuxidc.com/Linux/2013-01/77930.htm

更多Ubuntu相关信息见Ubuntu 专题页面 http://www.linuxidc.com/topicnews.aspx?tid=2

赞(0) 打赏
转载请注明出处:服务器评测 » Ubuntu 12.04 LTS 64位搭建Qt4终端编译环境
分享到: 更多 (0)

听说打赏我的人,都进福布斯排行榜啦!

支付宝扫一扫打赏

微信扫一扫打赏