summaryrefslogtreecommitdiff
path: root/.appveyor.yml
diff options
context:
space:
mode:
Diffstat (limited to '.appveyor.yml')
-rw-r--r--.appveyor.yml19
1 files changed, 10 insertions, 9 deletions
diff --git a/.appveyor.yml b/.appveyor.yml
index ae3293d..7536b58 100644
--- a/.appveyor.yml
+++ b/.appveyor.yml
@@ -1,21 +1,22 @@
version: 7.2.x-{build}
-clone_depth: 50
+image:
+- Visual Studio 2015
environment:
- MS_SDK_VER: v7.1
+ BLD: debug
matrix:
- - CPU: x86
- BLD: debug
- - CPU: x86
+ - ARCH: x86
+ - ARCH: x86
BLD: release
- - CPU: x64
- BLD: debug
- - CPU: x64
+ - ARCH: x64
+ - ARCH: x64
BLD: release
+clone_depth: 50
+
install:
- - cmd: '"C:\Program Files\Microsoft SDKs\Windows\%MS_SDK_VER%\Bin\SetEnv.cmd" /%CPU% /%BLD%'
+- cmd: '"C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\SetEnv.cmd" /%ARCH% /%BLD%'
build_script:
- cmd: cd src && nmake -f Makefile.msft clean all && cd ..