unittest-cpp/appveyor.yml
Dan Huantes c269666681 Version made explicitly 3 parts
- Updated to appveyor.yml and
configure.ac to 2.1.0 to
match CMake project version.
2019-10-17 08:23:46 -05:00

30 lines
618 B
YAML

version: 2.1.0.{build}
os:
- Windows Server 2012 R2
environment:
matrix:
- CMAKE_GENERATOR: Visual Studio 9 2008
- CMAKE_GENERATOR: Visual Studio 10 2010
- CMAKE_GENERATOR: Visual Studio 11 2012
- CMAKE_GENERATOR: Visual Studio 12 2013
- CMAKE_GENERATOR: Visual Studio 14 2015
before_build:
# Generate solution files using cmake, in 'builds' directory.
# No need to create it because it's part of the repo.
- pushd builds && cmake -G "%CMAKE_GENERATOR%" ..\ && popd
configuration:
- Debug
- Release
build_script:
- pushd builds && cmake --build . && popd
matrix:
fast_finish: true