皮皮网

【补码和源码关系】【源码之家手机】【供求 php 源码】qtcore源码

2024-11-15 06:55:18 来源:金币app源码

1.qtcoreԴ?源码?
2.在ubuntu下怎么安装QT4

qtcore源码

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

       是源码源码之家手机帮助文档,包含了Qt中各个类库的源码供求 php 源码详细说明以及丰富的例子程序,使用Qt Assistant

       工具开阅读。源码qt4-qtconfig 是源码配置Qt环境的对话框,qt4-demos

       包含很多可以运行的源码可执行文件以及源代码。qt4-designer是源码用来设计GUI界面的设计器

       二、$ sudo apt-get install libqt4-debug 在安装这个软件的源码时候系统提示:

       正在读取软件包列表... 完成

       正在分析软件包的依赖关系树

       正在读取状态信息...

       完成

       三、编写源代码。源码 新建文件夹qt4hello,源码体检网 源码然后再里面新建文件 Qthello.cpp,源码内容如下:

       #include <QApplication>

       #include <QPushButton>

       int main(int argc,源码dm邮件源码 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的小窗口安装完毕