红联Linux门户
Linux帮助
当前位置: 红联Linux门户 > Debian

debian下儿QT4编程环境的建立

发布时间:2007-12-16 00:08:23来源:红联作者:Promises
edit by 连允庆

qt4是一款跨平台的编程软件,它包含有和MFC一样的库,实现了,一次编写,到处编译,一样运行这样的功能。在debian下,安装软件是非常容易的一件事,所以搭建qt4的编程环境也是一件很容易的事。

下面是我实现的过程:
apt-get update
apt-get install gcc g++ make
apt-get install libqt4-core libqt4-debug libqt4-dev libqt4-gui libqt4-qt3support libqt4-sql python-qt4 python-qt4-common qt4-designer qt4-dev-tools qt4-doc qt4-qtconfig

编写hello qt程序检验:
//helloworld.cpp
#include
#include
int main(int argc,char *argv[])
{
QApplication app(argc,argv);
QLabel *label=new QLabel("Hello Qt!");
label->show();
return app.exec();
}

编译过程:
qmake -project -o hello.pro
qmake hello.pro
make

运行程序:
./hello

环境搭建成功!
文章评论

共有 0 条评论