diff options
| author | freiro <f73b2894@opayq.com> | 2016-12-13 00:01:48 +0100 |
|---|---|---|
| committer | freiro <f73b2894@opayq.com> | 2016-12-13 21:05:00 +0100 |
| commit | b7b2627b3746e28fe64c9af74583c8b24edee909 (patch) | |
| tree | 8edfeefdfdcdd595ca0d2499e83db64e1c81ebc0 /src/citra_qt | |
| parent | 031fc3a46011ea64362549a993e52f0018bfe5b8 (diff) | |
Modularized Qt and SDL file copying
Now cmake relies on two submodules to copy the libraries in the proper folders
Diffstat (limited to 'src/citra_qt')
| -rw-r--r-- | src/citra_qt/CMakeLists.txt | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/citra_qt/CMakeLists.txt b/src/citra_qt/CMakeLists.txt index 64c4330c1..e1b3566bf 100644 --- a/src/citra_qt/CMakeLists.txt +++ b/src/citra_qt/CMakeLists.txt @@ -108,7 +108,9 @@ if(UNIX AND NOT APPLE) install(TARGETS citra-qt RUNTIME DESTINATION "${CMAKE_INSTALL_PREFIX}/bin") endif() -include(CopyMSVCLibsQt) if (MSVC) - copy_msvc_libraries() + include(CopyCitraQt5Deps) + include(CopyCitraSDLDeps) + copy_citra_Qt5_deps(citra-qt) + copy_citra_SDL_deps(citra-qt) endif() |
