diff options
author | fearlessTobi <thm.frey@gmail.com> | 2018-08-29 15:42:53 +0200 |
---|---|---|
committer | fearlessTobi <thm.frey@gmail.com> | 2018-08-29 15:42:53 +0200 |
commit | 78653f73398b98071fe9bb4b4a32ec68f674ccfd (patch) | |
tree | bb6ba70e7bad5a53cb9655787ec8ebaf5495285f /appveyor.yml | |
parent | Merge pull request #1190 from FearlessTobi/im-so-retarded (diff) | |
download | yuzu-78653f73398b98071fe9bb4b4a32ec68f674ccfd.tar yuzu-78653f73398b98071fe9bb4b4a32ec68f674ccfd.tar.gz yuzu-78653f73398b98071fe9bb4b4a32ec68f674ccfd.tar.bz2 yuzu-78653f73398b98071fe9bb4b4a32ec68f674ccfd.tar.lz yuzu-78653f73398b98071fe9bb4b4a32ec68f674ccfd.tar.xz yuzu-78653f73398b98071fe9bb4b4a32ec68f674ccfd.tar.zst yuzu-78653f73398b98071fe9bb4b4a32ec68f674ccfd.zip |
Diffstat (limited to '')
-rw-r--r-- | appveyor.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/appveyor.yml b/appveyor.yml index a6f12b267..d68ae87b1 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -41,9 +41,9 @@ before_build: - ps: | if ($env:BUILD_TYPE -eq 'msvc') { # redirect stderr and change the exit code to prevent powershell from cancelling the build if cmake prints a warning - cmd /C 'cmake -G "Visual Studio 15 2017 Win64" -DYUZU_USE_BUNDLED_QT=1 -DYUZU_USE_BUNDLED_SDL2=1 -DYUZU_USE_BUNDLED_UNICORN=1 .. 2>&1 && exit 0' + cmd /C 'cmake -G "Visual Studio 15 2017 Win64" -DYUZU_USE_BUNDLED_QT=1 -DYUZU_USE_BUNDLED_SDL2=1 -DYUZU_USE_BUNDLED_UNICORN=1 -DENABLE_COMPATIBILITY_LIST_DOWNLOAD=ON .. 2>&1 && exit 0' } else { - C:\msys64\usr\bin\bash.exe -lc "cmake -G 'MSYS Makefiles' -DYUZU_BUILD_UNICORN=1 -DCMAKE_BUILD_TYPE=Release .. 2>&1" + C:\msys64\usr\bin\bash.exe -lc "cmake -G 'MSYS Makefiles' -DYUZU_BUILD_UNICORN=1 -DCMAKE_BUILD_TYPE=Release -DENABLE_COMPATIBILITY_LIST_DOWNLOAD=ON .. 2>&1" } - cd .. |