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.

Change-Id: I53e5920d39f87162c418fb3f4cff7927ec9b5488
Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
(cherry picked from commit 62bea90207b6fde116ef6fbb926565b648708d57)
Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
This commit is contained in:
Joerg Bornemann 2024-01-31 16:25:16 +01:00 committed by Qt Cherry-pick Bot
parent b09c637c49
commit 108990dc13

View File

@ -562,7 +562,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.