Skip to content

Commit

Permalink
project: Add appveyor VS2022 build.
Browse files Browse the repository at this point in the history
  • Loading branch information
Sibras committed Nov 25, 2021
1 parent f9b7e0f commit cdb30e3
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions SMP/appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ environment:
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
- MSVC_VER: 16
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
- MSVC_VER: 17
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2022

install:
# Install GitLink
Expand All @@ -32,7 +34,9 @@ before_build:

# Setup msvc environment for required compiler version (specified by MSVC_VER)
- ps: >-
if ($env:MSVC_VER -eq 16) {
if ($env:MSVC_VER -eq 17) {
$env:VCVARS="C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Auxiliary\Build\vcvarsall.bat"
} elseif ($env:MSVC_VER -eq 16) {
$env:VCVARS="C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build\vcvarsall.bat"
} elseif ($env:MSVC_VER -eq 15) {
$env:VCVARS="C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvarsall.bat"
Expand Down Expand Up @@ -104,7 +108,9 @@ before_build:
# Set Targets path so that gitlink works correctly
- ps: $env:MSBUILDDIR=((Get-Command msbuild.exe).Path | Split-Path -parent)
- ps: >-
if ($env:MSVC_VER -eq 16) {
if ($env:MSVC_VER -eq 17) {
$env:VCTargetsPath="$env:MSBUILDDIR\..\..\..\Microsoft\VC\v170\"
} elseif ($env:MSVC_VER -eq 16) {
$env:VCTargetsPath="$env:MSBUILDDIR\..\..\Microsoft\VC\v160\"
} elseif ($env:MSVC_VER -eq 15) {
$env:VCTargetsPath="$env:MSBUILDDIR\..\..\..\Common7\IDE\VC\VCTargets"
Expand Down

0 comments on commit cdb30e3

Please sign in to comment.