aboutsummaryrefslogtreecommitdiffstats
path: root/appveyor.yml
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2019-12-12 19:21:00 +0100
committerSven Gothel <[email protected]>2019-12-12 19:21:00 +0100
commit4df06c6894b39af5bf4681c0acf0c1c080084c80 (patch)
tree2505eb6e3b5798db34033c4cac2d4613bf6bda44 /appveyor.yml
parent8915501ed02eac2b3bce9a7fc06cb1ab562901c3 (diff)
parentc0cf323e1d56ce605e90927324d2fdafcfbb564a (diff)
merge v1.20.0
Diffstat (limited to 'appveyor.yml')
-rw-r--r--appveyor.yml16
1 files changed, 12 insertions, 4 deletions
diff --git a/appveyor.yml b/appveyor.yml
index 6d826eed..81080828 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -1,10 +1,18 @@
-version: 1.19.0.{build}
+version: 1.20.0.{build}
environment:
matrix:
- - GEN: "Visual Studio 14 2015"
+ - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
+ GEN: "Visual Studio 14 2015"
+ ARCH: Win32
CFG: Release
- - GEN: "Visual Studio 14 2015 Win64"
+ - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
+ GEN: "Visual Studio 14 2015"
+ ARCH: x64
+ CFG: Release
+ - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
+ GEN: "Visual Studio 15 2017"
+ ARCH: x64
CFG: Release
install:
@@ -14,6 +22,6 @@ install:
build_script:
- cd build
- - cmake -G"%GEN%" -DALSOFT_REQUIRE_WINMM=ON -DALSOFT_REQUIRE_DSOUND=ON -DALSOFT_REQUIRE_WASAPI=ON -DALSOFT_EMBED_HRTF_DATA=YES ..
+ - 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 ..
- cmake --build . --config %CFG% --clean-first