1

我在 Windows 机器上为 VS2010 和 Qt 5.2 版使用点云库 1.6 预构建的 32 位。

当尝试包含在我的项目中时,我遇到了一个问题:

无法打开包含文件:'QtGui/QWidget':没有这样的文件或目录

4

1 回答 1

0

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

于 2020-07-31T08:27:34.010 回答