Qt
helpdoc
这个作者很懒,什么都没留下…
展开
-
Qt for MCU+vs2019提示Unexpected compiler version
将C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\Llvm\bin\libclang.dll原创 2021-06-01 10:27:28 · 611 阅读 · 0 评论 -
Qt 编译 MySQL
首先你要有Qt的源码,如果安装Qt的时候没有安装源码需要从http://download.qt.io/archive/qt下载对应版本single目录下的源码。然后从https://downloads.mysql.com/archives/community/下载mysql的库文件。一:打开mysql.pro项目 我的路径是:E:\Qt\Qt5.13.2\5.13.2\Src\qt...原创 2020-04-09 19:14:41 · 341 阅读 · 0 评论 -
visual studio 版本的Qt Creator找不到CBD调试器
转载于:https://blog.csdn.net/suima0v0/article/details/50973861第一种情况:第二种情况:Qt Creator->Tools->Options->Kits->Kits中的auto-detected部分带有黄色警告标识,提示No debuger set up在https://docs.microsoft....转载 2019-04-10 23:32:39 · 1621 阅读 · 0 评论 -
Qt C++加载qml的两种方式
一:qml的根节点是Item的可见派生类#include <QGuiApplication>#include <QQuickView>int main(int argc, char** argv){ QGuiApplication app(argc, argv); QQuickView viewer; viewer.setResizeM...原创 2019-05-03 11:39:17 · 2635 阅读 · 0 评论 -
ubuntu 安装qt,配置环境变量
Qt安装后qmake命令还不能直接使用,需要将Qt的bin目录添加到Path中:第一种;添加到/etc/profile,这种方式作用于系统中的所有用户执行命令: vi /etc/profile,在末尾插入如下内容:export QTDIR=/opt/Qt5.12.3/5.12.3export PATH=$QTDIR/gcc_64/bin:$PATHexport LD_LIBRARY_...原创 2019-07-17 16:48:05 · 6361 阅读 · 0 评论 -
QT release模式,qDebug输出到日志文件
包含头文件#include <stdafx.h>main函数的QApplication app(argc, argv);下面加入installMessageHandler();#ifndef STDAFX_H#define STDAFX_H#include <QByteArray>#include <cstdio>#include <Q...原创 2019-07-30 11:06:59 · 2896 阅读 · 1 评论