Explicitly instantiate SharedPtr<DeviceManagerImpl> for MSVC
[alure.git] / appveyor.yml
blob521cbedb76255cf713d62d26259af7311b85046b
1 image:
2   - Visual Studio 2015
4 install:
5     # Remove the VS Xamarin targets to reduce AppVeyor specific noise in build
6     # logs. See: http://help.appveyor.com/discussions/problems/4569
7     - del "C:\Program Files (x86)\MSBuild\14.0\Microsoft.Common.targets\ImportAfter\Xamarin.Common.targets"
9 build_script:
10 - cmd: >-
11     curl "http://openal-soft.org/openal-binaries/openal-soft-1.18.2-bin.zip" -o openal-soft-1.18.2-bin.zip
13     7z x openal-soft-1.18.2-bin.zip
15     set OPENALDIR=C:\projects\alure\openal-soft-1.18.2-bin
17     mkdir build
19     cd build
21     cmake -G"Visual Studio 14" ..
23     cmake --build . --config "Release" --clean-first