summaryrefslogtreecommitdiff
path: root/.appveyor.yml
blob: a25e28adcd11a58e65894a840a4b1c32873e11dc (plain)
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
version: 7.7.0-{build}

clone_depth: 50

environment:
  MS_SDK_VER: v7.1
  matrix:
  - CPU: x86
    BLD: debug
    CFLAGS_EXTRA: -DAO_ASSUME_VISTA -J
  - CPU: x86
    BLD: release
  - CPU: x64
    BLD: debug
    CFLAGS_EXTRA: -DAO_CMPXCHG16B_AVAILABLE
  - CPU: x64
    BLD: release

install:
  - cmd: '"C:\Program Files\Microsoft SDKs\Windows\%MS_SDK_VER%\Bin\SetEnv.cmd" /%CPU% /%BLD%'

build_script:
  - cmd: cd src && nmake -f Makefile.msft clean all CFLAGS_EXTRA="%CFLAGS_EXTRA%" && cd ..

test_script:
  - cmd: cd src && nmake -f Makefile.msft check CFLAGS_EXTRA="%CFLAGS_EXTRA%"