Don't try to use std::pointer_traits::to_address
[openal-soft.git] / appveyor.yml
blobb75fbd79e8344e77159a6928200cbb5885e47c49
1 version: 1.22.2.{build}
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
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