aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorShyamnath Premnadh <shyamnath.premnadh@qt.io>2023-03-30 15:37:52 +0200
committerQt Cherry-pick Bot <cherrypick_bot@qt-project.org>2023-03-30 15:02:43 +0000
commit78af9f8e1d7f5b93ca3c67b16984dcda75499a98 (patch)
tree7b7b9b7d0dd758ffa089df3138a01a4b1fca1c73
parent1cc34e990fed856a10b115a3a4b96bee10c4f98f (diff)
PySide: Add QtLocation to wheel
- Amends 452eac0702688a74539d2e66be07d6f322aa11ab Change-Id: I1a6c9c68f689e1ccd875fad8ab2dda0de5fd1f0e Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io> (cherry picked from commit 9575e9d745b1a4f61cc867df5200c4b1e74718af) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
-rw-r--r--build_scripts/wheel_files.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/build_scripts/wheel_files.py b/build_scripts/wheel_files.py
index 148bca6df..7ed44c71e 100644
--- a/build_scripts/wheel_files.py
+++ b/build_scripts/wheel_files.py
@@ -184,6 +184,7 @@ def wheel_files_pyside_addons() -> List[ModuleData]:
module_QtWebEngineWidgets(),
module_QtWebSockets(),
module_QtHttpServer(),
+ module_QtLocation(),
]
return files
@@ -923,3 +924,8 @@ def module_QtJsonRpc() -> ModuleData:
data = ModuleData("JsonRpc")
data.metatypes.append("qt6jsonrpcprivate_relwithdebinfo_metatypes.json")
return data
+
+
+def module_QtLocation() -> ModuleData:
+ data = ModuleData("Location")
+ return data