本文目录一览:
- 1、qt-windows-opensource-5.1.0-msvc2010_opengl-x86-offline还需要编译器么?
- 2、qt-win-opensource-4.7.4-mingw怎么安装
- 3、你好,请问qt-windows-opensource-5.0.2-mingw47_32-x86-offline如何安装,主要是开发环境如何配置?谢谢
- 4、qt-opensource-windows-x86-mingw530-5.7.0安装在win10 64位系统中需要添加什么文
qt-windows-opensource-5.1.0-msvc2010_opengl-x86-offline还需要编译器么?
如果用qtcreator编就需要下个Debugging Tools for Windows,如果用vs2010,就需要装vs2010
qt-win-opensource-4.7.4-mingw怎么安装
你不是吧?这还要问,先去下载IDE,先安装这个IDE
然后再下载qt-win-opensource-4.7.4-mingw.exe库文件
这样在安装库文件的时候第二步问你MinGW编译器在哪里,就指向第一步IDE安装目录的mingw目录,这也是为什么先装IDE,QT库的原因,然后在系统环境变量中加入三个路径:
D:\Qt\qtcreator-2.3.1\mingw\bin (IDE下mingw编译器路径)
D:\Qt\4.7.4\bin (QT库qmake路径)
D:\Qt\4.7.4\qmake (QT库qmake库路径)
设置完这些打开IDE就可以编写程序了,不过这个编写出来的程序是动态库的,如果想要静态库的,就要另外重新编译静态库才行了。自己百度一下吧。。
你好,请问qt-windows-opensource-5.0.2-mingw47_32-x86-offline如何安装,主要是开发环境如何配置?谢谢
直接双击运行即可。
装好之后打开qtcreater即可,如果不想用qtcreater而用vs,才需要设置环境变量。
安装需要4G左右的空间
qt-opensource-windows-x86-mingw530-5.7.0安装在win10 64位系统中需要添加什么文
1、安装Qt5
Qt5的安装比Qt4的安装简单多了,我装的是Qt5.4(qt-opensource-windows-x86-mingw491_opengl-5.4.0.exe),它集成了MinGW、Qt Creator等,不需要你再单独下载MinGW和Qt Creator。-qtwindowsopensource
首先,去Qt官网下载资源:qt-opensource-windows-x86-mingw491_opengl-5.4.0.exe;然后,双击安装即可。安装后,“开始”菜单
2、配置Qt
打开Qt Creator,工具–选项,打开“选项”对话框
若没有检测出,则添加相应的Qt版本和编译器(MinGW),再设置构建套件(Kits):设备类型、编译器(MinGW)、调试器、Qt版本
3、使用Qt
打开Qt Creator,新建项目–其他项目–空的qmake项目,项目命名为“QtTest”,再添加新文件main.cpp。
在main.cpp中添加如下代码:
#includeQApplication
#includeQVBoxLayout
#includeQLabel
#includeQPushButton
int main(int argc,char *argv[])
{
QApplication app(argc,argv);
QWidget *window = new QWidget;
window-setWindowTitle("QtTest");
//QLabel *label= new QLabel("Hello Qt");
QLabel *label = new QLabel("h2iHello/i"" font color = redQt/fonth2");
QPushButton *button=new QPushButton("Quit");
QObject::connect(button,SIGNAL(clicked()),app,SLOT(quit()));
QVBoxLayout *layout=new QVBoxLayout;
layout-addWidget(label);
layout-addWidget(button);
window-setLayout(layout);
window-show();
return app.exec();
}
此时,代码显示如下错误:
运行时错误提示:#includeQApplication–No such file……
实际上,QT5中很多常用的QT头文件都被移到core gui widgets 等模块中去了,在QT5中,.pro文件需要增加额外的一行(注意大小写):
QT += core gui widgets
其中Qt += core gui widgets 表示链接QtCore(d).dll、QtGui(d).dll、QtWidgets(d).dll。
我们在.pro文件中增加一行上述代码,保存,再双击打开.cpp文件,此时错误提示线消失,运行,结果