appveyor.yml 313 Bytes
Newer Older
Edward Thomson committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
version: '{build}'
branches:
  only:
  - master
build_script:
- ps: >-
    choco install cmake

    choco install python2

    mkdir build

    cd build

    cmake -D ENABLE_TRACE=ON -D BUILD_CLAR=ON -D STDCALL=ON .. -G"Visual Studio 11"

    cmake --build . --config RelWithDebInfo
test_script:
- ps: ctest -V .