From b249fb6c6cb5c6badb19d2ccece730dd0278ac6b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kjell=20Hedstr=C3=B6m?= Date: Wed, 19 Apr 2023 22:39:32 -0600 Subject: [PATCH] Update appveyor.yml to use Visual Studio 2022 (17) (#487) --- appveyor.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 19a00e2..4b0d966 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -2,7 +2,7 @@ environment: P: "c:/projects/libs" # Operating system (build VM template) -os: Visual Studio 2017 +os: Visual Studio 2022 # scripts that are called at very beginning, before repo cloning #init: @@ -24,7 +24,7 @@ before_build: - cd build build_script: - - cmake -G "Visual Studio 15 2017 Win64" -DADD_G3LOG_UNIT_TEST=ON -DWINDOWS_FUNCSIG=ON -DUSE_DYNAMIC_LOGGING_LEVELS=ON -DCHANGE_G3LOG_DEBUG_TO_DBUG=ON -DCMAKE_INSTALL_PREFIX=c:\g3log .. + - cmake -G "Visual Studio 17" -A x64 -DADD_G3LOG_UNIT_TEST=ON -DWINDOWS_FUNCSIG=ON -DUSE_DYNAMIC_LOGGING_LEVELS=ON -DCHANGE_G3LOG_DEBUG_TO_DBUG=ON -DCMAKE_INSTALL_PREFIX=c:\g3log .. - cmake --build . --config Release --target install # scripts to run after build