Remove unused HAVE_INITGUID_H check
[openal-soft.git] / appveyor.yml
blob8ad0f6bf137e91b5da6afc3ec5ef8b9a854993fd
1 version: 1.23.1.{build}
3 environment:
4     APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2022
5     GEN: "Visual Studio 17 2022"
6     matrix:
7       - ARCH: Win32
8         CFG: Release
9       - ARCH: x64
10         CFG: Release
12 after_build:
13 - 7z a ..\soft_oal.zip "%APPVEYOR_BUILD_FOLDER%\build\%CFG%\soft_oal.dll" "%APPVEYOR_BUILD_FOLDER%\README.md" "%APPVEYOR_BUILD_FOLDER%\COPYING"
15 artifacts:
16 - path: soft_oal.zip
18 build_script:
19     - cd build
20     - 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 ..
21     - cmake --build . --config %CFG% --clean-first