Merge pull request #40 from McSinyx/travis
[alure.git] / appveyor.yml
blobf7818d15f0dd0183d3fe40adf45568b0336b5556
1 environment:
2     matrix:
3       - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
4         GEN: "Visual Studio 14 2015"
5         ARCH: x64
6         CFG: Release
7       - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
8         GEN: "Visual Studio 15 2017"
9         ARCH: x64
10         CFG: Release
12 install:
13     # Remove the VS Xamarin targets to reduce AppVeyor specific noise in build
14     # logs. See: http://help.appveyor.com/discussions/problems/4569
15     - del "C:\Program Files (x86)\MSBuild\14.0\Microsoft.Common.targets\ImportAfter\Xamarin.Common.targets"
16     - curl "https://openal-soft.org/openal-binaries/openal-soft-1.20.1-bin.zip" -o openal-soft-1.20.1-bin.zip
17     - 7z x -o%APPVEYOR_BUILD_FOLDER%\.. openal-soft-1.20.1-bin.zip
18     - set OPENALDIR=%APPVEYOR_BUILD_FOLDER%\..\openal-soft-1.20.1-bin
20 build_script:
21 - cmd: |
22     cd build
23     cmake -G"%GEN%" -A %ARCH% ..
24     cmake --build . --config %CFG% --clean-first