Reduce MAX_HWBUFFERS to 128
[dsound-openal.git] / appveyor.yml
blob03a437a461eb69987fcec0d1d56e33a029fbe1a8
1 environment:
2     matrix:
3       - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
4         GEN: "Visual Studio 15 2017"
5         ARCH: Win32
6         CFG: Release
7       - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
8         GEN: "Visual Studio 15 2017"
9         ARCH: x64
10         CFG: Release
12 after_build:
13 - 7z a ..\dsoal.zip "%APPVEYOR_BUILD_FOLDER%\build\%CFG%\dsound.dll" "%APPVEYOR_BUILD_FOLDER%\README.md" "%APPVEYOR_BUILD_FOLDER%\LICENSE"
15 artifacts:
16 - path: dsoal.zip
18 build_script:
19 - cmd: |
20     cd build
21     cmake -G"%GEN%" -A %ARCH% ..
22     cmake --build . --config %CFG% --clean-first