
qt
凉凉凉~
see u
展开
-
WIN环境QT下的boost安装
一、编译boost源码为静态库 1>将你的Qt的工具目录(有g++.exe)设置环境变量。(我的是 F:\Qt592\Tools\mingw530_32\bin,要依据实际情况) 2>下载boost源码并解压(如boost_1_65_1.zip) 3>在命令行进入boost_1_65_1/tools/build/src/engine 4>执行 buil...转载 2018-10-30 14:41:45 · 1460 阅读 · 4 评论 -
qt打包大厦接口的exe遇到的问题
今天打包过去的时候exe运行出现错误:Warning: File:(ssl\qsslsocket_openssl_symbols.cpp) Line:(120) QSslSocket: cannot call unresolved function SSL_CTX_new (2019-01-27 19:04:38 周日)Warning: File:(ssl\qsslsocket_openssl...原创 2019-01-27 19:20:17 · 285 阅读 · 0 评论 -
qt 5.12.3 各环境下安装包
https://mirrors.tuna.tsinghua.edu.cn/qt/archive/qt/5.12/5.12.3/原创 2019-05-15 10:07:21 · 5352 阅读 · 2 评论 -
Qt用fopen写文件时候中文路径解析失败解决办法!
头文件include<QTextCodec>getMapFilePath = QFileDialog::getExistingDirectory(this,tr("文件对话框!"), "C:");QTextCodec *code = QTextCodec::codecForName("GB2312");std::string name = code->fromUnicod...原创 2019-06-05 10:21:57 · 2325 阅读 · 0 评论 -
qt 添加Q_OBJECT报错
如果qt中的类里需要使用信号槽的话类开始需要声明Q_OBJECT:class MyServer : public QTcpServer{ Q_OBJECTpublic: explicit MyServer(QObject *parent = nullptr); void startServer();signals:public slots:protecte...原创 2019-09-06 14:11:10 · 3327 阅读 · 4 评论