Fix appveyor env vars
[dsound-openal.git] / appveyor.yml
blobc6f16a5bc717508f2d19d6c35414230af0ace80a
1 environment:
2     matrix:
3       - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
4         GEN: "Visual Studio 15 2017"
5         ARCH: x64
6         CFG: Release
7       - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
8         GEN: "Visual Studio 15 2017"
9         ARCH: Win32
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"
17 build_script:
18 - cmd: |
19     cd build
20     cmake -G"%GEN%" -A %ARCH% ..
21     cmake --build . --config %CFG% --clean-first