diff options
author | bunnei <bunneidev@gmail.com> | 2018-06-23 09:17:32 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-23 09:17:32 +0200 |
commit | 0b831dd2ba26e8d13b166efe914e9234ee5d04e1 (patch) | |
tree | c251581c2b52ec40d15cf8d1078da7bfa42f831a /CMakeModules | |
parent | Fixed RequestUpdateAudioRenderer deadlocks and calculated section sizes properly (#580) (diff) | |
download | yuzu-0b831dd2ba26e8d13b166efe914e9234ee5d04e1.tar yuzu-0b831dd2ba26e8d13b166efe914e9234ee5d04e1.tar.gz yuzu-0b831dd2ba26e8d13b166efe914e9234ee5d04e1.tar.bz2 yuzu-0b831dd2ba26e8d13b166efe914e9234ee5d04e1.tar.lz yuzu-0b831dd2ba26e8d13b166efe914e9234ee5d04e1.tar.xz yuzu-0b831dd2ba26e8d13b166efe914e9234ee5d04e1.tar.zst yuzu-0b831dd2ba26e8d13b166efe914e9234ee5d04e1.zip |
Diffstat (limited to 'CMakeModules')
-rw-r--r-- | CMakeModules/CopyYuzuQt5Deps.cmake | 2 | ||||
-rw-r--r-- | CMakeModules/CopyYuzuSDLDeps.cmake | 2 | ||||
-rw-r--r-- | CMakeModules/CopyYuzuUnicornDeps.cmake | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/CMakeModules/CopyYuzuQt5Deps.cmake b/CMakeModules/CopyYuzuQt5Deps.cmake index bfad52c4a..ed24c742c 100644 --- a/CMakeModules/CopyYuzuQt5Deps.cmake +++ b/CMakeModules/CopyYuzuQt5Deps.cmake @@ -1,6 +1,6 @@ function(copy_yuzu_Qt5_deps target_dir) include(WindowsCopyFiles) - set(DLL_DEST "${CMAKE_BINARY_DIR}/bin/") + set(DLL_DEST "${CMAKE_BINARY_DIR}/bin/$<CONFIG>/") set(Qt5_DLL_DIR "${Qt5_DIR}/../../../bin") set(Qt5_PLATFORMS_DIR "${Qt5_DIR}/../../../plugins/platforms/") set(PLATFORMS ${DLL_DEST}platforms/) diff --git a/CMakeModules/CopyYuzuSDLDeps.cmake b/CMakeModules/CopyYuzuSDLDeps.cmake index e6f455960..5963684f4 100644 --- a/CMakeModules/CopyYuzuSDLDeps.cmake +++ b/CMakeModules/CopyYuzuSDLDeps.cmake @@ -1,5 +1,5 @@ function(copy_yuzu_SDL_deps target_dir) include(WindowsCopyFiles) - set(DLL_DEST "${CMAKE_BINARY_DIR}/bin/") + set(DLL_DEST "${CMAKE_BINARY_DIR}/bin/$<CONFIG>/") windows_copy_files(${target_dir} ${SDL2_DLL_DIR} ${DLL_DEST} SDL2.dll) endfunction(copy_yuzu_SDL_deps) diff --git a/CMakeModules/CopyYuzuUnicornDeps.cmake b/CMakeModules/CopyYuzuUnicornDeps.cmake index c32f717c8..7af0ef023 100644 --- a/CMakeModules/CopyYuzuUnicornDeps.cmake +++ b/CMakeModules/CopyYuzuUnicornDeps.cmake @@ -1,6 +1,6 @@ function(copy_yuzu_unicorn_deps target_dir) include(WindowsCopyFiles) - set(DLL_DEST "${CMAKE_BINARY_DIR}/bin/") + set(DLL_DEST "${CMAKE_BINARY_DIR}/bin/$<CONFIG>/") windows_copy_files(${target_dir} ${UNICORN_DLL_DIR} ${DLL_DEST} libgcc_s_seh-1.dll libwinpthread-1.dll |