diff options
author | ameerj <52414509+ameerj@users.noreply.github.com> | 2022-03-19 07:35:09 +0100 |
---|---|---|
committer | ameerj <52414509+ameerj@users.noreply.github.com> | 2022-03-19 07:35:09 +0100 |
commit | c85a3e5a287e7fe816d22476ddfc3932a47190ca (patch) | |
tree | e45eb1dfe8dbba6f422a3718c20ab7e0806c05dd /.ci/templates | |
parent | Merge pull request #8028 from v1993/patch-9 (diff) | |
download | yuzu-c85a3e5a287e7fe816d22476ddfc3932a47190ca.tar yuzu-c85a3e5a287e7fe816d22476ddfc3932a47190ca.tar.gz yuzu-c85a3e5a287e7fe816d22476ddfc3932a47190ca.tar.bz2 yuzu-c85a3e5a287e7fe816d22476ddfc3932a47190ca.tar.lz yuzu-c85a3e5a287e7fe816d22476ddfc3932a47190ca.tar.xz yuzu-c85a3e5a287e7fe816d22476ddfc3932a47190ca.tar.zst yuzu-c85a3e5a287e7fe816d22476ddfc3932a47190ca.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 f6e7557b2..e5f8ea91e 100644 --- a/.ci/templates/build-msvc.yml +++ b/.ci/templates/build-msvc.yml @@ -8,7 +8,7 @@ steps: displayName: 'Install vulkan-sdk' - script: python -m pip install --upgrade pip conan displayName: 'Install conan' -- script: refreshenv && mkdir build && cd build && cmake -G "Visual Studio 16 2019" -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} -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 16 2019" -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 .. displayName: 'Configure CMake' - task: MSBuild@1 displayName: 'Build' |