unittest-cpp/appveyor.yml
Ben Hymers 4b8d3a7418 Add AppVeyor configuration file, appveyor.yml
Builds project files with cmake, then builds those with VS2013.
OS is Windows Server 2012.
Debug and Release configurations are both built.
2015-04-27 08:52:29 +01:00

14 lines
298 B
YAML

os:
- Windows Server 2012 R2
install:
# Generate solution files using cmake, in 'builds' directory.
# No need to create it because it's part of the repo.
- cd builds && cmake -G "Visual Studio 12" ../ && cd ..
configuration:
- Debug
- Release
build:
project: builds/UnitTest++.sln