diff options
| author | Adrian Herrmann <adrian.herrmann@qt.io> | 2024-03-28 14:36:55 +0100 |
|---|---|---|
| committer | Adrian Herrmann <adrian.herrmann@qt.io> | 2024-03-28 16:46:46 +0100 |
| commit | 3f3856ba94a59de49bc6c636c77a6173fd91c333 (patch) | |
| tree | b3f44828e82f2580dede6f82df2b98dbde3af13c /build_scripts/wheel_files.py | |
| parent | 7b709cf594d9c308b57eacd784845beff9c72c2f (diff) | |
build: Add multimedia dependencies to Qt artifacts
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
Pick-to: 6.7 6.6 6.6.3.1
Change-Id: I0ead82ce09a7afb309ff674b4f5fe5afc32319da
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io>
Diffstat (limited to 'build_scripts/wheel_files.py')
| -rw-r--r-- | build_scripts/wheel_files.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/build_scripts/wheel_files.py b/build_scripts/wheel_files.py index 9103a5ca2..0d3072773 100644 --- a/build_scripts/wheel_files.py +++ b/build_scripts/wheel_files.py @@ -848,6 +848,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 |
