appveyor.yml 660 B

12345678910111213141516171819
  1. version: 1.18.2.{build}
  2. environment:
  3. matrix:
  4. - GEN: "Visual Studio 14 2015"
  5. CFG: Release
  6. - GEN: "Visual Studio 14 2015 Win64"
  7. CFG: Release
  8. install:
  9. # Remove the VS Xamarin targets to reduce AppVeyor specific noise in build
  10. # logs. See also http://help.appveyor.com/discussions/problems/4569
  11. - del "C:\Program Files (x86)\MSBuild\14.0\Microsoft.Common.targets\ImportAfter\Xamarin.Common.targets"
  12. build_script:
  13. - cd build
  14. - cmake -G"%GEN%" -DALSOFT_REQUIRE_WINMM=ON -DALSOFT_REQUIRE_DSOUND=ON -DALSOFT_REQUIRE_MMDEVAPI=ON -DALSOFT_EMBED_HRTF_DATA=YES ..
  15. - cmake --build . --config %CFG% --clean-first