-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappveyor.yml
More file actions
28 lines (24 loc) · 744 Bytes
/
appveyor.yml
File metadata and controls
28 lines (24 loc) · 744 Bytes
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
version: 1.0.{build}
os:
- Visual Studio 2015
platform:
- Win32
- x64
configuration:
- Debug
- Release
environment:
matrix:
- VisualStudioVersion: 12.0
PlatformToolset: v120
- VisualStudioVersion: 14.0
PlatformToolset: v140
- VisualStudioVersion: 15.0
PlatformToolset: v141
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
build_script:
- msbuild /p:PlatformToolset="%PlatformToolset%" "delegate.vcxproj" /logger:"%ProgramFiles%\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"
- mkdir vcbuild
- cd vcbuild
- cmake .. -G "Visual Studio 12 2013"
- msbuild /p:PlatformToolset="%PlatformToolset%" "sample.vcxproj" /logger:"%ProgramFiles%\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"