Torque3D/Engine/lib/openal-soft/appveyor.yml

22 lines
657 B
YAML
Raw Normal View History

version: 1.23.1.{build}
2016-10-22 09:22:33 +10:00
environment:
2024-06-30 14:35:57 -05:00
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2022
GEN: "Visual Studio 17 2022"
2016-10-22 09:22:33 +10:00
matrix:
- ARCH: Win32
2016-10-22 09:22:33 +10:00
CFG: Release
- ARCH: x64
2016-10-22 09:22:33 +10:00
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
2016-10-22 09:22:33 +10:00
build_script:
- cd build
- 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 ..
2016-10-22 09:22:33 +10:00
- cmake --build . --config %CFG% --clean-first