diff options
| author | 2022-11-27 17:56:22 -0500 | |
|---|---|---|
| committer | 2022-11-27 17:56:22 -0500 | |
| commit | 6b64557ad62141d1ac5d42e88ba7a3ed0cc9884d (patch) | |
| tree | 614d45e1b6bdeffc988163fbe727c6a524c200c0 /CMakeModules | |
| parent | Merge pull request #9317 from german77/input-crash (diff) | |
| parent | CMake: rework for Qt6 support (diff) | |
| download | yuzu-6b64557ad62141d1ac5d42e88ba7a3ed0cc9884d.tar.gz yuzu-6b64557ad62141d1ac5d42e88ba7a3ed0cc9884d.tar.xz yuzu-6b64557ad62141d1ac5d42e88ba7a3ed0cc9884d.zip | |
Merge pull request #8829 from Docteh/qt6_0002
CMake: rework for Qt6 support
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 a353ddbb7..ab56de444 100644 --- a/CMakeModules/CopyYuzuQt5Deps.cmake +++ b/CMakeModules/CopyYuzuQt5Deps.cmake | |||
| @@ -27,10 +27,13 @@ function(copy_yuzu_Qt5_deps target_dir) | |||
| 27 | Qt5Core$<$<CONFIG:Debug>:d>.* | 27 | Qt5Core$<$<CONFIG:Debug>:d>.* |
| 28 | Qt5Gui$<$<CONFIG:Debug>:d>.* | 28 | Qt5Gui$<$<CONFIG:Debug>:d>.* |
| 29 | Qt5Widgets$<$<CONFIG:Debug>:d>.* | 29 | Qt5Widgets$<$<CONFIG:Debug>:d>.* |
| 30 | Qt5Multimedia$<$<CONFIG:Debug>:d>.* | ||
| 31 | Qt5Network$<$<CONFIG:Debug>:d>.* | 30 | Qt5Network$<$<CONFIG:Debug>:d>.* |
| 32 | ) | 31 | ) |
| 33 | 32 | if (YUZU_USE_QT_MULTIMEDIA) | |
| 33 | windows_copy_files(${target_dir} ${Qt5_DLL_DIR} ${DLL_DEST} | ||
| 34 | Qt5Multimedia$<$<CONFIG:Debug>:d>.* | ||
| 35 | ) | ||
| 36 | endif() | ||
| 34 | if (YUZU_USE_QT_WEB_ENGINE) | 37 | if (YUZU_USE_QT_WEB_ENGINE) |
| 35 | windows_copy_files(${target_dir} ${Qt5_DLL_DIR} ${DLL_DEST} | 38 | windows_copy_files(${target_dir} ${Qt5_DLL_DIR} ${DLL_DEST} |
| 36 | Qt5Network$<$<CONFIG:Debug>:d>.* | 39 | Qt5Network$<$<CONFIG:Debug>:d>.* |