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