]> git.tdb.fi Git - ext/openal.git/blob - appveyor.yml
Tweak some types to work around an MSVC compile error
[ext/openal.git] / appveyor.yml
1 version: 1.23.1.{build}
2
3 environment:
4     APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
5     GEN: "Visual Studio 15 2017"
6     matrix:
7       - ARCH: Win32
8         CFG: Release
9       - ARCH: x64
10         CFG: Release
11
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"
14
15 artifacts:
16 - path: soft_oal.zip
17
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