This is my first time testing Qt and want to create a very simple application that 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 I try to compile, I get an error:
Project ERROR: Unknown module(s) in QT: QWebEngineView Project ERROR: Unknown module(s) in QT: webenginewidgets
I think I know that he cannot find the modules, but looking in the qt documentation seems like the right way to include them.
I am running QtCreator 3.4.2 on Qt 5.5.0.
c ++ qt qt-creator qtwebengine
Michael nielsen
source share