aboutsummaryrefslogtreecommitdiffstats
path: root/build_scripts/wheel_files.py
diff options
context:
space:
mode:
authorAdrian Herrmann <adrian.herrmann@qt.io>2024-03-28 14:36:55 +0100
committerQt Cherry-pick Bot <cherrypick_bot@qt-project.org>2024-03-28 16:56:06 +0000
commit5cad7f595f4cd7faa6e45a2ddf82f3bb14ab9140 (patch)
treee2354332a1a805b988ea20d36a25795eb150f91b /build_scripts/wheel_files.py
parentbf4c87b7d72e83d82d49423ea577ab93ebb8c1f6 (diff)
build: Add multimedia dependencies to Qt artifacts6.6.3.1
Add a number of DLL dependencies required by Qt Multimedia to the list of Qt artifacts to be retrieved from the Qt binary directory. Fixes: PYSIDE-2656 Change-Id: I0ead82ce09a7afb309ff674b4f5fe5afc32319da Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io> (cherry picked from commit 3f3856ba94a59de49bc6c636c77a6173fd91c333) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
Diffstat (limited to 'build_scripts/wheel_files.py')
-rw-r--r--build_scripts/wheel_files.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/build_scripts/wheel_files.py b/build_scripts/wheel_files.py
index 000bf4204..f614ac9df 100644
--- a/build_scripts/wheel_files.py
+++ b/build_scripts/wheel_files.py
@@ -839,6 +839,10 @@ def module_QtMultimedia() -> ModuleData:
data.translations.append("qtmultimedia_*")
data.plugins = get_module_plugins(json_data)
+ if sys.platform == "win32":
+ data.extra_files.extend(["avcodec-60.dll", "avformat-60.dll", "avutil-58.dll",
+ "swresample-4.dll", "swscale-7.dll"])
+
return data