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创建应用程序
#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]