diff --git a/appveyor.yml b/appveyor.yml index f18635a..649b304 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -5,6 +5,8 @@ platform: x64 environment: matrix: + - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019 + CMAKE_GENERATOR: "Visual Studio 16 2019" - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017 CMAKE_GENERATOR: "Visual Studio 15 2017 Win64" - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015 @@ -15,10 +17,10 @@ matrix: before_build: - cmake --version - - cmake -DCMAKE_BUILD_TYPE=Debug -DBUILD_TESTING=ON -H. -Bcmake_build -G "%CMAKE_GENERATOR%" + - cmake -DCMAKE_BUILD_TYPE=Debug -DBUILD_TESTING=ON -S. -Bcmake_build -G "%CMAKE_GENERATOR%" build_script: - - cmake --build cmake_build --config Debug --target ALL_BUILD + - cmake --build cmake_build --config Debug --target ALL_BUILD --verbose test_script: - - cmake --build cmake_build --config Debug --target RUN_TESTS + - cmake --build cmake_build --config Debug --target RUN_TESTS --verbose