I'm trying out Qt for the first time and want to create a very basic application which loads a website. I want to use Qt WebEngine.
This is my helloworld.pro:
TEMPLATE = app
TARGET = hello
DEPENDPATH += .
INCLUDEPATH += .
QT += webenginewidgets
SOURCES += hello.cpp
And this is my hello.cpp
#include <QApplication>
#include <QtWebEngineWidgets/QtWebEngineWidgets>
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
QWebEngineView *view = new QWebEngineView(parent);
view->load(QUrl("http://qt-project.org/"));
view->show();
return app.exec();
}
When trying to compile I get the error:
Project ERROR: Unknown module(s) in QT: QWebEngineView
Project ERROR: Unknown module(s) in QT: webenginewidgets
I guess I know that it cannot find the modules, but looking into the qt-documentation it seems as the right way to include them.
I'm running QtCreator 3.4.2 on Qt 5.5.0.