aboutsummaryrefslogtreecommitdiff
path: root/appveyor.yml
blob: b598a530a9772edf4c40276d4bb2b647f54b28ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
os:
    - Visual Studio 2017
    - Visual Studio 2015

platform:
    - Win32
    - x64

configuration:
    - Debug
    - Release

before_build:
    - cmake -H. -Bbuild -A%PLATFORM%

build:
    project: build\args.sln
    verbosity: normal

test_script:
    - cd build
    - ctest -V -C %CONFIGURATION%