diff options
author | yuzubot <yuzu@yuzu-emu.org> | 2022-11-21 13:03:21 +0000 |
---|---|---|
committer | yuzubot <yuzu@yuzu-emu.org> | 2022-11-21 13:03:21 +0000 |
commit | 5ad585b0f8a89d9689aedb2bf0dd1aa2e31eb9d0 (patch) | |
tree | 440d637c8bfb6c9141953730e0e5456d9b4cd525 /CMakeModules | |
parent | ecb405b389eb922a0aa30a62deb3e422a21e24bf (diff) |
"Merge Tagged PR 8829"mainline-0-1245
Diffstat (limited to 'CMakeModules')
-rw-r--r-- | CMakeModules/CopyYuzuQt5Deps.cmake | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/CMakeModules/CopyYuzuQt5Deps.cmake b/CMakeModules/CopyYuzuQt5Deps.cmake index a353ddbb77..ab56de4440 100644 --- a/CMakeModules/CopyYuzuQt5Deps.cmake +++ b/CMakeModules/CopyYuzuQt5Deps.cmake @@ -27,10 +27,13 @@ function(copy_yuzu_Qt5_deps target_dir) Qt5Core$<$<CONFIG:Debug>:d>.* Qt5Gui$<$<CONFIG:Debug>:d>.* Qt5Widgets$<$<CONFIG:Debug>:d>.* - Qt5Multimedia$<$<CONFIG:Debug>:d>.* Qt5Network$<$<CONFIG:Debug>:d>.* ) - + if (YUZU_USE_QT_MULTIMEDIA) + windows_copy_files(${target_dir} ${Qt5_DLL_DIR} ${DLL_DEST} + Qt5Multimedia$<$<CONFIG:Debug>:d>.* + ) + endif() if (YUZU_USE_QT_WEB_ENGINE) windows_copy_files(${target_dir} ${Qt5_DLL_DIR} ${DLL_DEST} Qt5Network$<$<CONFIG:Debug>:d>.* |