aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCristián Maureira-Fredes <cristian.maureira-fredes@qt.io>2022-10-05 15:20:15 +0200
committerCristián Maureira-Fredes <cristian.maureira-fredes@qt.io>2022-10-06 08:34:00 +0200
commit2063bb0f873fc24a9d6e2443f8eeccd2fb0803c7 (patch)
tree0ff88efba96f27109de4d55562eb925919a415bc
parent1e4cbb0b1150124943248031dad4ce27503e487d (diff)
wheel: include multimedia and texttospeech plugins
The new approach to create wheels introduced in 6.3 requires to have explicitily the plugins directories within the module instructions, otherwise they will not be added. 6.4 brought back TextToSpeech and also some multimedia plugins were missing. Change-Id: I5a99672dc8d8c33a2472fccd6fad174bad23fcee Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io>
-rw-r--r--build_scripts/wheel_files.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/build_scripts/wheel_files.py b/build_scripts/wheel_files.py
index e5e15f218..7c20c5544 100644
--- a/build_scripts/wheel_files.py
+++ b/build_scripts/wheel_files.py
@@ -172,8 +172,7 @@ def wheel_files_pyside_addons() -> List[ModuleData]:
module_QtSerialPort(),
module_QtSpatialAudio(),
module_QtStateMachine(),
- # Not available in 6.3
- # module_QtTextToSpeech(),
+ module_QtTextToSpeech(),
module_QtVirtualKeyboard(),
module_QtWebChannel(),
module_QtWebEngineCore(),
@@ -538,6 +537,7 @@ def module_QtSvgWidgets() -> ModuleData:
def module_QtTextToSpeech() -> ModuleData:
data = ModuleData("TextToSpeech")
+ data.plugins.append("texttospeech")
return data
@@ -734,6 +734,7 @@ def module_QtMultimedia() -> ModuleData:
data.qtlib.append("libQt6MultimediaQuick")
data.metatypes.append("qt6multimediaquickprivate_relwithdebinfo_metatypes.json")
data.translations.append("qtmultimedia_*")
+ data.plugins.append("multimedia")
return data