1. Qt安装时出现无法下载存档
- 进入Qt安装程序exe所在的文件目录,一般在下载文件夹,右键打开cmd。
- cmd输入:对应的exe+镜像提速。
.\qt-online-installer-windows-x64-4.8.0.exe --mirror https://mirrors.cloud.tencent.com/qt/
2. 环境配置
- 环境变量 》系统变量 》Path 》添加三个bin,我的安装目录在D:\Qt。
3. main中自定义类编译不过
- 在main.cpp中自定义类,比如实现信号和槽机制,运行报错:
👎 error: debug/main.o: in function `Sender::sendSignal()':
- 解决:在main函数下加上 #include “main.moc”,运行又报错:
👎 error: main.moc: No such file or directory
- 解决:在.pro文件加上 INCLUDEPATH += temp/moc ,就可生成moc文件。