From 9882a5ee1da0b9bed7019defd1a498acc94b557b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Rombauts?= Date: Thu, 29 Sep 2022 18:40:40 +0200 Subject: [PATCH] Add Visual Studio 2022 to AppVeyor CI/CD --- appveyor.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/appveyor.yml b/appveyor.yml index 50b3659..0bc5853 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -31,6 +31,7 @@ init: - if "%arch%"=="x64" (set generator="%vs% Win64") else (set generator="%vs%") # CMake uses a different grammar for Visual Studio 2019, with -A to specify architecture: - if "%APPVEYOR_BUILD_WORKER_IMAGE%"=="Visual Studio 2019" (set generator="Visual Studio 16 2019" -A %arch%) + - if "%APPVEYOR_BUILD_WORKER_IMAGE%"=="Visual Studio 2022" (set generator="Visual Studio 17 2022" -A %arch%) - echo %generator% # scripts to run before build