随笔分类 -  Qt

摘要:configure -prefix .\build\ -opensource -nomake demos -nomake examples -platform win32-msvc2015 configure -prefix .\build\ -opensource -nomake demos -n 阅读全文
posted @ 2022-01-24 09:07 echohelper
摘要:问题原因: Qt添加大量资源文件,编译时会出现内存溢出。 解决方法: 在.pro 文件里面加上语句: CONFIG += resources_big 阅读全文
posted @ 2021-08-27 17:17 echohelper
摘要:This application failed to start because it could not find or load the Qt platform plugin "windows" in "". 问题的原因是:缺少window平台运行的相应的插件。 解决方法: 1、使用windep 阅读全文
posted @ 2021-04-30 15:39 echohelper
摘要:Qt中事件处理的顺序 0、nativeEvent 1、notify 2、eventFilter 3、event 4、mouseXxxEvent(或keyXxxEvent) 阅读全文
posted @ 2021-02-20 10:29 echohelper
摘要:Qt程序发布 windeployqt.exe target_name.exe 阅读全文
posted @ 2021-01-06 12:11 echohelper
摘要:Qt编译提示 error:编译器的堆空间不足 问题原因: Qt添加大量资源文件,编译时会出现内存溢出。 解决方法: 在.pro 文件里面加上语句: CONFIG += resources_big 在该节点 下添加如下: x64 阅读全文
posted @ 2020-11-09 15:48 echohelper