1.qtcoreԴ?源码?
2.在ubuntu下怎么安装QT4
qtcoreԴ??
æä¹åå¨linuxä¸ç¼è¯QT éå°è¿ç±»ä¼¼çé误 ç¼è¯å¨é ç½®é误çé®é¢
ä¿®æ¹/root/.bash_profileï¼æqmakeè·¯å¾æ¹ä¸º*/mkspec/qws/arm-linux-g++
在ubuntu下怎么安装QT4
运行:
一、$ sudo apt-get install libqt4-dev libqt4-debug libqt4-gui
libqt4-sql qt4-dev-tools qt4-doc qt4-designer qt4-qtconfig
qt4-dev-tools
包含了Qt Assistant及Qt Linguist等工具,源码不需要单独安装这两个工具。源码无货店商源码其它的源码,qt4-doc
是源码wpf 参考源码帮助文档,包含了Qt中各个类库的源码c 源码 ping详细说明以及丰富的例子程序,使用Qt Assistant
工具开阅读。源码qt4-qtconfig 是源码配置Qt环境的对话框,qt4-demos
包含很多可以运行的源码可执行文件以及源代码。qt4-designer是源码用来设计GUI界面的设计器
二、$ sudo apt-get install libqt4-debug 在安装这个软件的源码时候系统提示:
正在读取软件包列表... 完成
正在分析软件包的依赖关系树
正在读取状态信息...
完成
三、编写源代码。源码 新建文件夹qt4hello,源码nginx源码剖析然后再里面新建文件 Qthello.cpp,源码内容如下:
#include <QApplication>
#include <QPushButton>
int main(int argc,源码pak文件源码 char *argv[])
{
QApplication app(argc, argv);
QPushButton hello("Hello Ubuntu!");
hello.resize(, );
hello.show();
return app.exec();
}
在终端输入:$ gedit Qthello.cpp(输入上面的程序)
$qmake -project(生成Qt项目)
$qmake(生成makefile文件)
$make
出现g++ -c -pipe -g -Wall -W -D_REENTRANT -DQT_GUI_LIB -DQT_CORE_LIB
-I/usr/share/qt4/mkspecs/linux-g++ -I. -I/usr/include/qt4/QtCore
-I/usr/include/qt4/QtCore -I/usr/include/qt4/QtGui
-I/usr/include/qt4/QtGui -I/usr/include/qt4 -I. -I. -I. -o
QtHello.o QtHello.cpp
g++ -o qtsrc QtHello.o -L/usr/lib -lQtGui -lQtCore -lpthread
最后
$ ls
Makefile qt4hello
qt4hello.pro Qthello.cpp
Qthello.o
结着
$ ./qt4hello 在屏幕上显示一个hello的小窗口安装完毕