QT5 Migration Can't open the include file: "QGraphicsWebView"?
Simple code:
#include <QCoreApplication>
#include <QGraphicsWebView>
int main(int argc, char *argv[])
{
QCoreApplication a(argc, argv);
return a.exec();
}
Example .pro:
QT += core gui declarative network webkit multimedia
TARGET = QTTest
CONFIG += console
CONFIG -= app_bundle
TEMPLATE = app
SOURCES += main.cpp
And the error I get:
C1083: Cannot open include file: 'QGraphicsWebView': No such file or directory
+5