2009年1月8日星期四

ubuntu8.04下的qt开发

1、安装Qt4开发环境:
#sudo apt-get install qt4-dev-tools python-qt

2. hello world!
mkdir qthello
vi hello.cpp
———————————————————————
#define QT3_SUPPORT
#include
#include


int main( int argc, char **argv )
{
QApplication a( argc, argv );

QPushButton hello( "Hello world!", 0 );
hello.resize( 100, 30 );

a.setMainWidget( &hello );
hello.show();
return a.exec();
}

————————————————————————
$qmake -project 创建project
$qmake创建makefile
$make创建应用程序

评论: 发表评论

订阅 博文评论 [Atom]





<< 主页

This page is powered by Blogger. Isn't yours?

订阅 博文 [Atom]