diff options
| author | 2022-06-18 23:34:28 -0500 | |
|---|---|---|
| committer | 2022-07-23 19:40:21 -0500 | |
| commit | cc83e0a6006667d126a7a83dde23a7f8ae3af994 (patch) | |
| tree | c4adfe7019e6f54050f8341e929c3db417d491f6 /CMakeModules/CopyYuzuQt5Deps.cmake | |
| parent | input_common: Add camera driver (diff) | |
| download | yuzu-cc83e0a6006667d126a7a83dde23a7f8ae3af994.tar.gz yuzu-cc83e0a6006667d126a7a83dde23a7f8ae3af994.tar.xz yuzu-cc83e0a6006667d126a7a83dde23a7f8ae3af994.zip | |
yuzu: Hook qt camera to camera driver
Diffstat (limited to 'CMakeModules/CopyYuzuQt5Deps.cmake')
| -rw-r--r-- | CMakeModules/CopyYuzuQt5Deps.cmake | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/CMakeModules/CopyYuzuQt5Deps.cmake b/CMakeModules/CopyYuzuQt5Deps.cmake index 0c27d51a6..4702a504c 100644 --- a/CMakeModules/CopyYuzuQt5Deps.cmake +++ b/CMakeModules/CopyYuzuQt5Deps.cmake | |||
| @@ -10,11 +10,13 @@ function(copy_yuzu_Qt5_deps target_dir) | |||
| 10 | set(Qt5_PLATFORMS_DIR "${Qt5_DIR}/../../../plugins/platforms/") | 10 | set(Qt5_PLATFORMS_DIR "${Qt5_DIR}/../../../plugins/platforms/") |
| 11 | set(Qt5_PLATFORMTHEMES_DIR "${Qt5_DIR}/../../../plugins/platformthemes/") | 11 | set(Qt5_PLATFORMTHEMES_DIR "${Qt5_DIR}/../../../plugins/platformthemes/") |
| 12 | set(Qt5_PLATFORMINPUTCONTEXTS_DIR "${Qt5_DIR}/../../../plugins/platforminputcontexts/") | 12 | set(Qt5_PLATFORMINPUTCONTEXTS_DIR "${Qt5_DIR}/../../../plugins/platforminputcontexts/") |
| 13 | set(Qt5_MEDIASERVICE_DIR "${Qt5_DIR}/../../../plugins/mediaservice/") | ||
| 13 | set(Qt5_XCBGLINTEGRATIONS_DIR "${Qt5_DIR}/../../../plugins/xcbglintegrations/") | 14 | set(Qt5_XCBGLINTEGRATIONS_DIR "${Qt5_DIR}/../../../plugins/xcbglintegrations/") |
| 14 | set(Qt5_STYLES_DIR "${Qt5_DIR}/../../../plugins/styles/") | 15 | set(Qt5_STYLES_DIR "${Qt5_DIR}/../../../plugins/styles/") |
| 15 | set(Qt5_IMAGEFORMATS_DIR "${Qt5_DIR}/../../../plugins/imageformats/") | 16 | set(Qt5_IMAGEFORMATS_DIR "${Qt5_DIR}/../../../plugins/imageformats/") |
| 16 | set(Qt5_RESOURCES_DIR "${Qt5_DIR}/../../../resources/") | 17 | set(Qt5_RESOURCES_DIR "${Qt5_DIR}/../../../resources/") |
| 17 | set(PLATFORMS ${DLL_DEST}plugins/platforms/) | 18 | set(PLATFORMS ${DLL_DEST}plugins/platforms/) |
| 19 | set(MEDIASERVICE ${DLL_DEST}mediaservice/) | ||
| 18 | set(STYLES ${DLL_DEST}plugins/styles/) | 20 | set(STYLES ${DLL_DEST}plugins/styles/) |
| 19 | set(IMAGEFORMATS ${DLL_DEST}plugins/imageformats/) | 21 | set(IMAGEFORMATS ${DLL_DEST}plugins/imageformats/) |
| 20 | if (MSVC) | 22 | if (MSVC) |
| @@ -22,6 +24,7 @@ function(copy_yuzu_Qt5_deps target_dir) | |||
| 22 | Qt5Core$<$<CONFIG:Debug>:d>.* | 24 | Qt5Core$<$<CONFIG:Debug>:d>.* |
| 23 | Qt5Gui$<$<CONFIG:Debug>:d>.* | 25 | Qt5Gui$<$<CONFIG:Debug>:d>.* |
| 24 | Qt5Widgets$<$<CONFIG:Debug>:d>.* | 26 | Qt5Widgets$<$<CONFIG:Debug>:d>.* |
| 27 | Qt5Multimedia$<$<CONFIG:Debug>:d>.* | ||
| 25 | ) | 28 | ) |
| 26 | 29 | ||
| 27 | if (YUZU_USE_QT_WEB_ENGINE) | 30 | if (YUZU_USE_QT_WEB_ENGINE) |
| @@ -53,6 +56,10 @@ function(copy_yuzu_Qt5_deps target_dir) | |||
| 53 | qjpeg$<$<CONFIG:Debug>:d>.* | 56 | qjpeg$<$<CONFIG:Debug>:d>.* |
| 54 | qgif$<$<CONFIG:Debug>:d>.* | 57 | qgif$<$<CONFIG:Debug>:d>.* |
| 55 | ) | 58 | ) |
| 59 | windows_copy_files(yuzu ${Qt5_MEDIASERVICE_DIR} ${MEDIASERVICE} | ||
| 60 | dsengine$<$<CONFIG:Debug>:d>.* | ||
| 61 | wmfengine$<$<CONFIG:Debug>:d>.* | ||
| 62 | ) | ||
| 56 | else() | 63 | else() |
| 57 | set(Qt5_DLLS | 64 | set(Qt5_DLLS |
| 58 | "${Qt5_DLL_DIR}libQt5Core.so.5" | 65 | "${Qt5_DLL_DIR}libQt5Core.so.5" |