openal-soft/appveyor.yml

22 lines
657 B
YAML
Raw Normal View History

2022-06-27 01:33:53 -07:00
version: 1.22.2.{build}
environment:
2020-04-26 07:36:50 -07:00
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
GEN: "Visual Studio 15 2017"
matrix:
2020-04-26 07:36:50 -07:00
- ARCH: Win32
CFG: Release
2020-04-26 07:36:50 -07:00
- ARCH: x64
CFG: Release
after_build:
- 7z a ..\soft_oal.zip "%APPVEYOR_BUILD_FOLDER%\build\%CFG%\soft_oal.dll" "%APPVEYOR_BUILD_FOLDER%\README.md" "%APPVEYOR_BUILD_FOLDER%\COPYING"
artifacts:
- path: soft_oal.zip
build_script:
- cd build
2019-09-20 14:56:21 -07:00
- cmake -G "%GEN%" -A %ARCH% -DALSOFT_BUILD_ROUTER=ON -DALSOFT_REQUIRE_WINMM=ON -DALSOFT_REQUIRE_DSOUND=ON -DALSOFT_REQUIRE_WASAPI=ON -DALSOFT_EMBED_HRTF_DATA=YES ..
- cmake --build . --config %CFG% --clean-first