From 3a5b455a8ae6cf6f911078d66deaed64dce33af8 Mon Sep 17 00:00:00 2001 From: Alexandru Croitor Date: Thu, 7 Jun 2018 15:54:49 +0200 Subject: Add bindings for QtWebEngine (aka Quick) There is only one method we really need, QtWebEngine::initialize() which is used for all Qt Quick based WebEngine applications. Otherwise you get a warning upon startup of a Qt Quick WebEngine application, and this might lead to undefined behavior. Task-number: PYSIDE-688 Change-Id: I7de2bbb58c49cb2a41b0e13ffc9de6a3161f3960 Reviewed-by: Christian Tismer --- build_scripts/main.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'build_scripts/main.py') diff --git a/build_scripts/main.py b/build_scripts/main.py index dca373401..b424aa8e4 100644 --- a/build_scripts/main.py +++ b/build_scripts/main.py @@ -1160,7 +1160,8 @@ class PysideBuild(_build): return config def is_webengine_built(self, built_modules): - return 'WebEngineWidgets' in built_modules or 'WebEngineCore' in built_modules + return ('WebEngineWidgets' in built_modules or 'WebEngineCore' in built_modules + or 'WebEngine' in built_modules) def prepare_standalone_clang(self, is_win = False): """ -- cgit v1.2.3