diff options
| author | 2018-08-29 15:42:53 +0200 | |
|---|---|---|
| committer | 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.gz yuzu-78653f73398b98071fe9bb4b4a32ec68f674ccfd.tar.xz yuzu-78653f73398b98071fe9bb4b4a32ec68f674ccfd.zip | |
Show game compatibility within yuzu
Diffstat (limited to 'appveyor.yml')
| -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: | |||
| 41 | - ps: | | 41 | - ps: | |
| 42 | if ($env:BUILD_TYPE -eq 'msvc') { | 42 | if ($env:BUILD_TYPE -eq 'msvc') { |
| 43 | # redirect stderr and change the exit code to prevent powershell from cancelling the build if cmake prints a warning | 43 | # redirect stderr and change the exit code to prevent powershell from cancelling the build if cmake prints a warning |
| 44 | 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' | 44 | 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' |
| 45 | } else { | 45 | } else { |
| 46 | C:\msys64\usr\bin\bash.exe -lc "cmake -G 'MSYS Makefiles' -DYUZU_BUILD_UNICORN=1 -DCMAKE_BUILD_TYPE=Release .. 2>&1" | 46 | 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" |
| 47 | } | 47 | } |
| 48 | - cd .. | 48 | - cd .. |
| 49 | 49 | ||