aboutsummaryrefslogtreecommitdiffstats
path: root/build_scripts
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@qt.io>2022-11-03 15:18:16 +0100
committerShyamnath Premnadh <Shyamnath.Premnadh@qt.io>2022-11-03 16:41:17 +0100
commit449da82d9c889c4f878801eb16817c2f282832f5 (patch)
tree9c36ac85aff9cd5a8b366c1296419305b038d76c /build_scripts
parent9e41fc083893bd4b9647e766cea95c904b1bb20d (diff)
Add Pdf/PdfWidgets to the wheel
Amends 48258c5a099be2c4accf373a2e2f52d48359cfa2. Pick-to: 6.4 Change-Id: I324d37ee07b3c32f8511b96ad84a6374bd6fbf8a Reviewed-by: Cristian Maureira-Fredes <cristian.maureira-fredes@qt.io>
Diffstat (limited to 'build_scripts')
-rw-r--r--build_scripts/wheel_files.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/build_scripts/wheel_files.py b/build_scripts/wheel_files.py
index 9212131b5..421fc8c45 100644
--- a/build_scripts/wheel_files.py
+++ b/build_scripts/wheel_files.py
@@ -164,6 +164,8 @@ def wheel_files_pyside_addons() -> List[ModuleData]:
module_QtMultimediaWidgets(),
module_QtNetworkAuth(),
module_QtNfc(),
+ module_QtPdf(),
+ module_QtPdfWidgets(),
module_QtPositioning(),
module_QtQuick3D(),
module_QtRemoteObjects(),
@@ -377,6 +379,18 @@ def module_QtNfc() -> ModuleData:
return data
+def module_QtPdf() -> ModuleData:
+ data = ModuleData("Pdf")
+
+ return data
+
+
+def module_QtPdfWidgets() -> ModuleData:
+ data = ModuleData("PdfWidgets")
+
+ return data
+
+
def module_QtPrintSupport() -> ModuleData:
data = ModuleData("PrintSupport")
data.typesystems.append("typesystem_printsupport_common.xml")