1# Notes:
2#   - Minimal appveyor.yml file is an empty file. All sections are optional.
3#   - Indent each level of configuration with 2 spaces. Do not use tabs!
4#   - All section names are case-sensitive.
5#   - Section names should be unique on each level.
6
7#---------------------------------#
8#      general configuration      #
9#---------------------------------#
10
11# version format
12#version: 0.10.{build}
13
14# branches to build
15branches:
16  # blacklist
17  except:
18    - gh-pages
19
20# Do not build on tags (GitHub only)
21skip_tags: true
22
23#---------------------------------#
24#    environment configuration    #
25#---------------------------------#
26
27os: Windows Server 2012
28
29# scripts that run after cloning repository
30install:
31  # install Win-Flex-Bison
32  #- cmd: cinst winflexbison -y
33
34#---------------------------------#
35#       build configuration       #
36#---------------------------------#
37
38# scripts to run before build
39before_build:
40  - cmd: cmake .
41
42# scripts to run *after* solution is built and *before* automatic packaging occurs (web apps, NuGet packages, Azure Cloud Services)
43# before_package:
44
45# scripts to run after build
46# after_build:
47
48# to run your custom scripts instead of automatic MSBuild
49build_script:
50  - cmd: cmake --build .
51
52# to disable automatic builds
53# build: off
54