Update appveyor.yml to use Visual Studio 2022 (17) (#487)

This commit is contained in:
Kjell Hedström 2023-04-19 22:39:32 -06:00 committed by GitHub
parent 5323480780
commit b249fb6c6c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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