aboutsummaryrefslogtreecommitdiff
path: root/appveyor.yml
blob: a941dfcc81ca36ada8256d26c4b3a33ee541c153 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
version: '{build}'

platform:
  - x86
  - x64
configuration:
  - Release
environment:
  CTEST_OUTPUT_ON_FAILURE: ON

install:
  - choco install -y yasm
before_build:
  - cmake .
build_script:
  - cmake --build . --config %CONFIGURATION%
test_script:
  - ctest --build-config %CONFIGURATION%