diff options
author | Marcel Metz <[email protected]> | 2017-03-05 17:23:31 +0100 |
---|---|---|
committer | Marcel Metz <[email protected]> | 2017-03-06 10:26:03 +0100 |
commit | a2d0bf8d3ab24fc9e1456dc48f975d404e122869 (patch) | |
tree | a7e1946b4702454a392fa8559256424d05721355 /appveyor.yml | |
parent | 1d208c49b51a25f617026b7444f03f1cd4599ee6 (diff) |
Configure CMake to require available backends on CI services
Configure CMake to require the installed backend libraries. This should
help to find build system regressions.
On TravisCI with Linux this requires the ALSA, PulseAudio, PortAudio, OSS
and JACK backend.
On TravisCI with Android cross compile Linux this requires the OpenSL
backend.
On TravisCI with MacOSX this requires the CoreAudio backend.
ON AppVeyor with Windows this requires the WinMM, DSound and MMDevAPI
backend.
Diffstat (limited to 'appveyor.yml')
-rw-r--r-- | appveyor.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/appveyor.yml b/appveyor.yml index 80908b8c..0d60cf61 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -14,6 +14,6 @@ install: build_script: - cd build - - cmake .. -G"%GEN%" + - cmake -G"%GEN%" -DALSOFT_REQUIRE_WINMM=ON -DALSOFT_REQUIRE_DSOUND=ON -DALSOFT_REQUIRE_MMDEVAPI=ON .. - cmake --build . --config %CFG% --clean-first |