summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-01-04 13:15:29 -0500
committerbunnei <bunneidev@gmail.com>2018-01-04 13:15:29 -0500
commit738845cc0e3e3dc4833e7eca25c263aa6834192b (patch)
tree27699c7763f9de3f41e95170f3135335b7c52774 /src
parent3f8b9181b553e8af9bd93899832ddc2c8cf73e8b (diff)
externals: Use unicorn DLL instead of static lib.
Diffstat (limited to 'src')
-rw-r--r--src/citra/CMakeLists.txt2
-rw-r--r--src/citra_qt/CMakeLists.txt2
2 files changed, 4 insertions, 0 deletions
diff --git a/src/citra/CMakeLists.txt b/src/citra/CMakeLists.txt
index a885f22f8..ed92a6ae2 100644
--- a/src/citra/CMakeLists.txt
+++ b/src/citra/CMakeLists.txt
@@ -29,5 +29,7 @@ endif()
if (MSVC)
include(CopyCitraSDLDeps)
+ include(CopyYuzuUnicornDeps)
copy_citra_SDL_deps(citra)
+ copy_yuzu_unicorn_deps(citra)
endif()
diff --git a/src/citra_qt/CMakeLists.txt b/src/citra_qt/CMakeLists.txt
index add7566c2..e2fa33081 100644
--- a/src/citra_qt/CMakeLists.txt
+++ b/src/citra_qt/CMakeLists.txt
@@ -109,6 +109,8 @@ endif()
if (MSVC)
include(CopyCitraQt5Deps)
include(CopyCitraSDLDeps)
+ include(CopyYuzuUnicornDeps)
copy_citra_Qt5_deps(citra-qt)
copy_citra_SDL_deps(citra-qt)
+ copy_yuzu_unicorn_deps(citra-qt)
endif()