diff options
author | lat9nq <lat9nq@gmail.com> | 2022-07-30 15:18:33 +0200 |
---|---|---|
committer | lat9nq <lat9nq@gmail.com> | 2022-09-05 03:36:34 +0200 |
commit | 45b343d1d09f30193a1da52924ee83a834356fae (patch) | |
tree | 3697d5cf9bb4c215c2d5dc9555dbd9d06df5d7ce /.ci/templates | |
parent | vcpkg,cmake: Use vcpkg for dbghelp (diff) | |
download | yuzu-45b343d1d09f30193a1da52924ee83a834356fae.tar yuzu-45b343d1d09f30193a1da52924ee83a834356fae.tar.gz yuzu-45b343d1d09f30193a1da52924ee83a834356fae.tar.bz2 yuzu-45b343d1d09f30193a1da52924ee83a834356fae.tar.lz yuzu-45b343d1d09f30193a1da52924ee83a834356fae.tar.xz yuzu-45b343d1d09f30193a1da52924ee83a834356fae.tar.zst yuzu-45b343d1d09f30193a1da52924ee83a834356fae.zip |
Diffstat (limited to '.ci/templates')
-rw-r--r-- | .ci/templates/build-msvc.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.ci/templates/build-msvc.yml b/.ci/templates/build-msvc.yml index a2ee71bd8..ea405e5dc 100644 --- a/.ci/templates/build-msvc.yml +++ b/.ci/templates/build-msvc.yml @@ -9,7 +9,7 @@ parameters: steps: - script: choco install vulkan-sdk displayName: 'Install vulkan-sdk' -- script: refreshenv && mkdir build && cd build && cmake -G "Visual Studio 17 2022" -A x64 -DYUZU_USE_BUNDLED_QT=1 -DYUZU_USE_BUNDLED_SDL2=1 -DYUZU_USE_QT_WEB_ENGINE=ON -DENABLE_COMPATIBILITY_LIST_DOWNLOAD=ON -DYUZU_ENABLE_COMPATIBILITY_REPORTING=${COMPAT} -DYUZU_TESTS=OFF -DUSE_DISCORD_PRESENCE=ON -DENABLE_QT_TRANSLATION=ON -DDISPLAY_VERSION=${{ parameters['version'] }} -DCMAKE_BUILD_TYPE=Release .. && cd .. +- script: refreshenv && mkdir build && cd build && cmake -G "Visual Studio 17 2022" -A x64 -DYUZU_USE_BUNDLED_QT=1 -DYUZU_USE_BUNDLED_SDL2=1 -DYUZU_USE_QT_WEB_ENGINE=ON -DENABLE_COMPATIBILITY_LIST_DOWNLOAD=ON -DYUZU_ENABLE_COMPATIBILITY_REPORTING=${COMPAT} -DYUZU_TESTS=OFF -DUSE_DISCORD_PRESENCE=ON -DENABLE_QT_TRANSLATION=ON -DDISPLAY_VERSION=${{ parameters['version'] }} -DCMAKE_BUILD_TYPE=Release -DYUZU_CRASH_DUMPS=ON .. && cd .. displayName: 'Configure CMake' - task: MSBuild@1 displayName: 'Build' |