aboutsummaryrefslogtreecommitdiffstats
path: root/build_scripts/platforms/linux.py
diff options
context:
space:
mode:
authorShyamnath Premnadh <Shyamnath.Premnadh@qt.io>2023-05-02 12:26:24 +0200
committerShyamnath Premnadh <Shyamnath.Premnadh@qt.io>2023-05-02 13:09:29 +0200
commit2c166425cf4143a6c5f6744ffa959a1b77b13e36 (patch)
tree7e6ac1834f2dce68b9079e312cce9ed5f4e52131 /build_scripts/platforms/linux.py
parent1f0feff173a0607fe449d2f3729e735da3793929 (diff)
Android Deployment - Add dependencies.xml files
These files that are available with the Qt installation enable us to find all the Android permissions and Qt dependencies required for each module Pick-to: 6.5 Task-number: PYSIDE-1612 Change-Id: I6df41f1456ccd226f5df0cfd17022f337f5d2198 Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io>
Diffstat (limited to 'build_scripts/platforms/linux.py')
-rw-r--r--build_scripts/platforms/linux.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/build_scripts/platforms/linux.py b/build_scripts/platforms/linux.py
index bf778670d..7bb3bdeb9 100644
--- a/build_scripts/platforms/linux.py
+++ b/build_scripts/platforms/linux.py
@@ -48,6 +48,9 @@ def prepare_standalone_package_linux(pyside_build, _vars, cross_build=False, is_
for module in constrain_modules]
accepted_modules.append("libicu*.so.??")
+ if is_android:
+ accepted_modules.append("*-android-dependencies.xml")
+
copydir("{qt_lib_dir}", destination_qt_lib_dir,
_filter=accepted_modules,
recursive=False, _vars=_vars, force_copy_symlinks=True)