add AppVeyor CI config

This commit is contained in:
2018-12-08 08:20:17 +07:00
parent bf712766d8
commit 215d6ae3f0

17
.appveyor.yml Normal file
View File

@@ -0,0 +1,17 @@
version: "{build}"
shallow_clone: true
image:
- Visual Studio 2015
- Visual Studio 2017
configuration:
- Debug
- Release
platform:
- Win32
- x64
build_script:
- mkdir build && cd build
- cmake .. -A%PLATFORM%
- cmake --build . --config %CONFIGURATION%
- ctest --verbose
test: off