我在 Windows 机器上为 VS2010 和 Qt 5.2 版使用点云库 1.6 预构建的 32 位。
当尝试包含在我的项目中时,我遇到了一个问题:
无法打开包含文件:'QtGui/QWidget':没有这样的文件或目录
我在 Windows 机器上为 VS2010 和 Qt 5.2 版使用点云库 1.6 预构建的 32 位。
当尝试包含在我的项目中时,我遇到了一个问题:
无法打开包含文件:'QtGui/QWidget':没有这样的文件或目录
I know it is a long time now but I had the same error on Qt 5.13.
I solved my problems by adding widgets
in the pro file :
QT += widgets gui core
and by replaging the include files:
replace
#include <QtGui/QWidget>
with
#include <QWidget>
and eventually
#include <QtGui/QApplication>
with
#include <QApplication>
And it compiles succesfully