Remove redundant void argument list in function def
[openal-soft.git] / appveyor.yml
blob010a2da1b277b5c611747752bd485f5f666283f3
1 version: 1.19.1.{build}
3 environment:
4     matrix:
5       - GEN: "Visual Studio 14 2015"
6         CFG: Release
7       - GEN: "Visual Studio 14 2015 Win64"
8         CFG: Release
10 install:
11     # Remove the VS Xamarin targets to reduce AppVeyor specific noise in build
12     # logs.  See also http://help.appveyor.com/discussions/problems/4569
13     - del "C:\Program Files (x86)\MSBuild\14.0\Microsoft.Common.targets\ImportAfter\Xamarin.Common.targets"
15 build_script:
16     - cd build
17     - cmake -G"%GEN%" -DALSOFT_BUILD_ROUTER=ON -DALSOFT_REQUIRE_WINMM=ON -DALSOFT_REQUIRE_DSOUND=ON -DALSOFT_REQUIRE_WASAPI=ON -DALSOFT_EMBED_HRTF_DATA=YES ..
18     - cmake --build . --config %CFG% --clean-first