summaryrefslogtreecommitdiffstats
path: root/src/corelib/Qt6CoreDeploySupport.cmake
diff options
context:
space:
mode:
authorJoerg Bornemann <joerg.bornemann@qt.io>2024-01-31 16:25:16 +0100
committerJoerg Bornemann <joerg.bornemann@qt.io>2024-01-31 21:18:48 +0100
commit62bea90207b6fde116ef6fbb926565b648708d57 (patch)
tree57cfe844e35493b1028a39b489dcb528a38907bc /src/corelib/Qt6CoreDeploySupport.cmake
parent2188ca2c5df6f21a953c002edbe5b2d2cc2c2d2c (diff)
qt6_deploy_translations: Don't deploy the "qt" meta-catalog
The "qt" meta-catalog is some relic from the past that pulls in the translations for qtbase and qtmultimedia. The qtbase translations are deployed by default, and the qtmultimedia translations are deployed if qtmultimedia is used by the project. Pick-to: 6.7 Change-Id: I53e5920d39f87162c418fb3f4cff7927ec9b5488 Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
Diffstat (limited to 'src/corelib/Qt6CoreDeploySupport.cmake')
-rw-r--r--src/corelib/Qt6CoreDeploySupport.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/corelib/Qt6CoreDeploySupport.cmake b/src/corelib/Qt6CoreDeploySupport.cmake
index e3226b57a3..11765fbec9 100644
--- a/src/corelib/Qt6CoreDeploySupport.cmake
+++ b/src/corelib/Qt6CoreDeploySupport.cmake
@@ -569,7 +569,7 @@ function(qt6_deploy_translations)
if(arg_CATALOGS)
set(catalogs ${arg_CATALOGS})
else()
- set(catalogs qt qtbase)
+ set(catalogs qtbase)
# Find the translations that belong to the Qt modules that are used by the project.
# "Used by the project" means just all modules that are pulled in via find_package for now.