Unknown module(s) in QT: webenginewidgets
-
All modules installed, version of module is the same as Qt -> 6.9.2
getting error when trying to build below::-1: error: Project ERROR: Unknown module(s) in QT: webchannel positioning
TEMPLATE = app TARGET = webengine_test QT += core gui widgets webenginewidgets # <-- webenginewidgets is required CONFIG += c++17 SOURCES += main.cpp
#include <QApplication> #include <QWebEngineView> int main(int argc, char *argv[]) { QApplication app(argc, argv); QWebEngineView view; view.resize(800, 600); view.load(QUrl("https://www.qt.io")); // any test URL view.show(); return app.exec(); }
@JacobNovitsky when you say all modules installed:
- from the same source ?
- are you using the Qt version with all the modules installed to build your application ?