diff options
author | MerryMage <MerryMage@users.noreply.github.com> | 2018-01-13 23:14:04 +0100 |
---|---|---|
committer | MerryMage <MerryMage@users.noreply.github.com> | 2018-01-13 23:38:52 +0100 |
commit | e86bdb16019be278974fcab75255ae37cc600747 (patch) | |
tree | e1e8628e276bd3c5044278e495da67236b0d765d /CMakeModules | |
parent | Update build scripts (diff) | |
download | yuzu-e86bdb16019be278974fcab75255ae37cc600747.tar yuzu-e86bdb16019be278974fcab75255ae37cc600747.tar.gz yuzu-e86bdb16019be278974fcab75255ae37cc600747.tar.bz2 yuzu-e86bdb16019be278974fcab75255ae37cc600747.tar.lz yuzu-e86bdb16019be278974fcab75255ae37cc600747.tar.xz yuzu-e86bdb16019be278974fcab75255ae37cc600747.tar.zst yuzu-e86bdb16019be278974fcab75255ae37cc600747.zip |
Diffstat (limited to 'CMakeModules')
-rw-r--r-- | CMakeModules/CopyYuzuQt5Deps.cmake (renamed from CMakeModules/CopyCitraQt5Deps.cmake) | 4 | ||||
-rw-r--r-- | CMakeModules/CopyYuzuSDLDeps.cmake (renamed from CMakeModules/CopyCitraSDLDeps.cmake) | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/CMakeModules/CopyCitraQt5Deps.cmake b/CMakeModules/CopyYuzuQt5Deps.cmake index 342d0b915..ed24c742c 100644 --- a/CMakeModules/CopyCitraQt5Deps.cmake +++ b/CMakeModules/CopyYuzuQt5Deps.cmake @@ -1,4 +1,4 @@ -function(copy_citra_Qt5_deps target_dir) +function(copy_yuzu_Qt5_deps target_dir) include(WindowsCopyFiles) set(DLL_DEST "${CMAKE_BINARY_DIR}/bin/$<CONFIG>/") set(Qt5_DLL_DIR "${Qt5_DIR}/../../../bin") @@ -14,4 +14,4 @@ function(copy_citra_Qt5_deps target_dir) Qt5Widgets$<$<CONFIG:Debug>:d>.* ) windows_copy_files(yuzu ${Qt5_PLATFORMS_DIR} ${PLATFORMS} qwindows$<$<CONFIG:Debug>:d>.*) -endfunction(copy_citra_Qt5_deps) +endfunction(copy_yuzu_Qt5_deps) diff --git a/CMakeModules/CopyCitraSDLDeps.cmake b/CMakeModules/CopyYuzuSDLDeps.cmake index 4f9e4aeb9..5963684f4 100644 --- a/CMakeModules/CopyCitraSDLDeps.cmake +++ b/CMakeModules/CopyYuzuSDLDeps.cmake @@ -1,5 +1,5 @@ -function(copy_citra_SDL_deps target_dir) +function(copy_yuzu_SDL_deps target_dir) include(WindowsCopyFiles) set(DLL_DEST "${CMAKE_BINARY_DIR}/bin/$<CONFIG>/") windows_copy_files(${target_dir} ${SDL2_DLL_DIR} ${DLL_DEST} SDL2.dll) -endfunction(copy_citra_SDL_deps) +endfunction(copy_yuzu_SDL_deps) |