diff options
author | bunnei <bunneidev@gmail.com> | 2015-06-10 00:47:15 +0200 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2015-06-10 00:47:15 +0200 |
commit | 28a92051234f94f1acf1958a1b9f284c9d6ab9f6 (patch) | |
tree | 671d6872b2545b4c3fac17c00bfc8e3bab4272df | |
parent | Merge pull request #848 from lioncash/ldm (diff) | |
parent | Robocopy doesn't like trailing slashes (diff) | |
download | yuzu-28a92051234f94f1acf1958a1b9f284c9d6ab9f6.tar yuzu-28a92051234f94f1acf1958a1b9f284c9d6ab9f6.tar.gz yuzu-28a92051234f94f1acf1958a1b9f284c9d6ab9f6.tar.bz2 yuzu-28a92051234f94f1acf1958a1b9f284c9d6ab9f6.tar.lz yuzu-28a92051234f94f1acf1958a1b9f284c9d6ab9f6.tar.xz yuzu-28a92051234f94f1acf1958a1b9f284c9d6ab9f6.tar.zst yuzu-28a92051234f94f1acf1958a1b9f284c9d6ab9f6.zip |
-rw-r--r-- | src/citra_qt/CMakeLists.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/citra_qt/CMakeLists.txt b/src/citra_qt/CMakeLists.txt index c05779380..c2d1ad240 100644 --- a/src/citra_qt/CMakeLists.txt +++ b/src/citra_qt/CMakeLists.txt @@ -91,10 +91,10 @@ if (Qt5_FOUND AND MSVC) set(PLATFORMS ${DLL_DEST}platforms/) # windows commandline expects the / to be \ so switch them - string(REPLACE "/" "\\" Qt5_DLL_DIR ${Qt5_DLL_DIR}) - string(REPLACE "/" "\\" Qt5_PLATFORMS_DIR ${Qt5_PLATFORMS_DIR}) - string(REPLACE "/" "\\" DLL_DEST ${DLL_DEST}) - string(REPLACE "/" "\\" PLATFORMS ${PLATFORMS}) + string(REPLACE "/" "\\\\" Qt5_DLL_DIR ${Qt5_DLL_DIR}) + string(REPLACE "/" "\\\\" Qt5_PLATFORMS_DIR ${Qt5_PLATFORMS_DIR}) + string(REPLACE "/" "\\\\" DLL_DEST ${DLL_DEST}) + string(REPLACE "/" "\\\\" PLATFORMS ${PLATFORMS}) # /NJH /NJS /NDL /NFL /NC /NS /NP - Silence any output # cmake adds an extra check for command success which doesn't work too well with robocopy |