From ec7b2ee70a8b2db7fb87f50671a001ddd54697b0 Mon Sep 17 00:00:00 2001 From: Jocelyn Turcotte Date: Fri, 15 Nov 2013 14:21:17 +0100 Subject: Add an intermediate Qt5WebEngine module library. Make the WebEngine QtQuick plubin library a library only that fetches the API privatly from the official module. This will allow an experimental plugin library to also have access to the API classes, which it currently can't since the plugins aren't deployed the same way as module to /lib. The module currently only export classes privately but the plan is to make this library the official linking point of entry for applications along with the Qt5WebEngineWidgets module. The WebEngineCore library could eventyally be merged into this module library if we can get gyp to play well with qmake. Change-Id: I5edb60b412e213b59f791a7b8df9f28c295502de Reviewed-by: Andras Becsi --- lib/quick/plugin/plugin.pro | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 lib/quick/plugin/plugin.pro (limited to 'lib/quick/plugin/plugin.pro') diff --git a/lib/quick/plugin/plugin.pro b/lib/quick/plugin/plugin.pro new file mode 100644 index 000000000..93e04f97a --- /dev/null +++ b/lib/quick/plugin/plugin.pro @@ -0,0 +1,13 @@ +CXX_MODULE = qml +TARGET = qtwebengineplugin +TARGETPATH = QtWebEngine +IMPORT_VERSION = 1.0 + +QT += webengine qml quick +QT_PRIVATE += webengine-private qml-private quick-private gui-private core-private + +INCLUDEPATH += $$QTWEBENGINE_ROOT/lib $$QTWEBENGINE_ROOT/lib/quick + +SOURCES = plugin.cpp + +load(qml_plugin) -- cgit v1.2.3