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
环境搭建成功!