aboutsummaryrefslogtreecommitdiffstats
path: root/build_scripts/wheel_files.py
diff options
context:
space:
mode:
Diffstat (limited to 'build_scripts/wheel_files.py')
-rw-r--r--build_scripts/wheel_files.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/build_scripts/wheel_files.py b/build_scripts/wheel_files.py
index d93ad3560..d35232bf3 100644
--- a/build_scripts/wheel_files.py
+++ b/build_scripts/wheel_files.py
@@ -229,6 +229,9 @@ def wheel_files_pyside_addons() -> list[ModuleData]:
module_QtLocation(),
module_QtAsyncio(),
module_QtWebView(),
+ # This is not an actual module, but it's required in order
+ # to add the 'Quick' components of the WebView.
+ module_QtWebViewQuick(),
]
return files
@@ -1076,3 +1079,8 @@ def module_QtWebView() -> ModuleData:
json_data = get_module_json_data("WebView")
data.plugins = get_module_plugins(json_data)
return data
+
+
+def module_QtWebViewQuick() -> ModuleData:
+ data = ModuleData("WebViewQuick")
+ return data