forked from boost-ext/ut
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.appveyor.yml
28 lines (24 loc) · 867 Bytes
/
.appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#
# Copyright (c) 2019 Kris Jusiak (kris at jusiak dot net)
#
# Distributed under the Boost Software License, Version 1.0.
# (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
#
shallow_clone: true
environment:
fast_finish: true
matrix:
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
VSPATH: C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build
PLATFORM: amd64
CMAKE_GENERATOR: Visual Studio 16 2019
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019 Preview
VSPATH: C:\Program Files (x86)\Microsoft Visual Studio\2019\Preview\VC\Auxiliary\Build
PLATFORM: amd64
CMAKE_GENERATOR: Visual Studio 16 2019
install:
- cinst cmake
- refreshenv
- call "%VSPATH%"\vcvarsall %PLATFORM%
build_script:
- cmake -G "%CMAKE_GENERATOR%" -Bbuild -H. && cmake --build build