summaryrefslogtreecommitdiffstats
path: root/cmake
diff options
context:
space:
mode:
authorAlexey Edelev <alexey.edelev@qt.io>2024-01-03 13:16:41 +0100
committerQt Cherry-pick Bot <cherrypick_bot@qt-project.org>2024-01-12 14:31:47 +0000
commit6763644c3fc151d6e7716af08531a386557d5a88 (patch)
tree9b9c35045d66b0011ed380c9da1f6d4f74407cad /cmake
parent82fff69aaaf0e250fdf695302f7f2b6719170634 (diff)
Add the support of the qt_import_plugins functionality to androiddeployqt
qt_import_plugins allows to control application deployment on non-Android platforms. This adds support for the pre-defined plugin list that is computed using the qt_import_plugins input. Pick-to: 6.5 Task-number: QTBUG-118829 Change-Id: Iaa9c3f600533a4b5a3079ab228fabf212d9ce5a5 Reviewed-by: Assam Boudjelthia <assam.boudjelthia@qt.io> (cherry picked from commit 438837ce274fdc1457b66179b25df40f33b23a15) (cherry picked from commit 4dfaabce579c42443a8f9b4425b62c20fe275052) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
Diffstat (limited to 'cmake')
-rw-r--r--cmake/QtAndroidHelpers.cmake3
1 files changed, 2 insertions, 1 deletions
diff --git a/cmake/QtAndroidHelpers.cmake b/cmake/QtAndroidHelpers.cmake
index 5bfabdfb7a..0743fe41a9 100644
--- a/cmake/QtAndroidHelpers.cmake
+++ b/cmake/QtAndroidHelpers.cmake
@@ -253,7 +253,8 @@ function(qt_internal_android_dependencies target)
# Module plugins
if(module_plugin_types)
foreach(plugin IN LISTS module_plugin_types)
- string(APPEND file_contents "<bundled file=\"${INSTALL_PLUGINSDIR}/${plugin}\" />\n")
+ string(APPEND file_contents
+ "<bundled file=\"${INSTALL_PLUGINSDIR}/${plugin}\" type=\"plugin_dir\"/>\n")
endforeach()
endif()