摘要:
boost编译与安装: b2 stage --toolset=msvc-14.2 --stagedir="D:\boost\stage\boost_1_78_0\vc142" --with-date_time link=static runtime-link=shared runtime-link= 阅读全文
摘要:
Vs版本与平台工具集版本的对应关系如下: -Visual Studio 2019: V142 -Visual Studio 2017: V141 -Visual Studio 2015: V140 -Visual Studio 2013: V120 -Visual Studio 2012: V110 阅读全文
摘要:
不死不老 众生感慨青春易逝,春夏秋冬数载已觉老。 真的老了吗! 已老,你看我真的老了。 未老,你看你真的老了。 未至死亦不老,不死不老。 阅读全文
摘要:
问题原因: Qt添加大量资源文件,编译时会出现内存溢出。 解决方法: 在.pro 文件里面加上语句: CONFIG += resources_big 阅读全文
摘要:
如何创建呢?其实很简单,而且微软文档已够你玩耍的啦。So Now 自己去玩耍吧!!! 1、工具、命令使用方法: https://docs.microsoft.com/zh-cn/visualstudio/install/create-an-offline-installation-of-visual 阅读全文
摘要:
C++ 控制台程序不显示控制台黑框 解决方法: 只需要在代码中加上如下内容: #pragma comment( linker, "/subsystem:windows /entry:mainCRTStartup" )//不显示控制台 示例代码: #include "stdafx.h" #includ 阅读全文
摘要:
Window上VsCode中基于PyQt5的Python开发 之 环境搭建 一、安装VsCode 二、安装Python 三、安装PyQt5 及其他模块 1、安装PyQt5:如:pip install pyqt5 -i https://pypi.douban.com/simple 2、安装PyQ5-t 阅读全文
摘要:
This application failed to start because it could not find or load the Qt platform plugin "windows" in "". 问题的原因是:缺少window平台运行的相应的插件。 解决方法: 1、使用windep 阅读全文