diff options
author | Aaron Clauson <aaron@sipsorcery.com> | 2020-11-25 11:07:10 +0000 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2020-12-16 13:27:11 +0100 |
commit | e7b53d47218301790bfec44d50219561502922ad (patch) | |
tree | ad81b496c960251056efe0a99e0ca6fd01462bbc | |
parent | 8273ea3b8db1449b65cf369e541a1253c4490f45 (diff) |
This change to the appveyor CI config for msvc builds reverses a change introduced in #19960. It re-applies a setting to inform vcpkg to only build release vesions of the dependencies rather than the default of debug and release.
It had been expected that the vcpkg manifest mechanism introduced in #19960 would do this automatically but it turns out not to be the case.
Github-Pull: #20489
Rebased-From: fa18e7cbc5ea6aaba94dca4ebdc850c9db141f89
-rw-r--r-- | .appveyor.yml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.appveyor.yml b/.appveyor.yml index 0d026748b5..bf93d7a990 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -24,6 +24,7 @@ install: git pull origin master > $null git -c advice.detachedHead=false checkout $env:VCPKG_COMMIT_ID .\bootstrap-vcpkg.bat > $null + Add-Content "C:\tools\vcpkg\triplets\$env:PLATFORM-windows-static.cmake" "set(VCPKG_BUILD_TYPE release)" cd "$env:APPVEYOR_BUILD_FOLDER" before_build: # Powershell block below is to download and extract the Qt static libraries. The pseudo code is: |