diff options
author | Sergei Nikulov <sergey.nikulov@gmail.com> | 2016-01-28 15:57:28 +0300 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2016-02-01 23:55:08 +0100 |
commit | 7a8a7ca7b01d3e37467cf3779df67f1e852541f9 (patch) | |
tree | 9924d8751f380a3c56225d25b60e88cebdb226f9 /appveyor.yml | |
parent | 2b6dadc52d38797ad52a7a117724f85be82a3889 (diff) | |
download | curl-7a8a7ca7b01d3e37467cf3779df67f1e852541f9.tar.gz |
AppVeyor: updated to handle OpenSSL/WinSSL builds
Closes #621
Diffstat (limited to 'appveyor.yml')
-rw-r--r-- | appveyor.yml | 20 |
1 files changed, 18 insertions, 2 deletions
diff --git a/appveyor.yml b/appveyor.yml index 42eb392be..0725c44fc 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,19 +1,35 @@ -version: 7.45.0.{build} +version: 7.47.0.{build} environment: matrix: - PRJ_GEN: "Visual Studio 11 2012 Win64" BDIR: msvc2012 PRJ_CFG: Release + OPENSSL: OFF - PRJ_GEN: "Visual Studio 12 2013 Win64" BDIR: msvc2013 PRJ_CFG: Release + OPENSSL: OFF - PRJ_GEN: "Visual Studio 14 2015 Win64" BDIR: msvc2015 PRJ_CFG: Release + OPENSSL: OFF + - PRJ_GEN: "Visual Studio 11 2012 Win64" + BDIR: msvc2012 + PRJ_CFG: Release + OPENSSL: ON + - PRJ_GEN: "Visual Studio 12 2013 Win64" + BDIR: msvc2013 + PRJ_CFG: Release + OPENSSL: ON + - PRJ_GEN: "Visual Studio 14 2015 Win64" + BDIR: msvc2015 + PRJ_CFG: Release + OPENSSL: ON + build_script: - mkdir build.%BDIR% - cd build.%BDIR% - - cmake .. -G"%PRJ_GEN%" + - cmake .. -G"%PRJ_GEN%" -DCMAKE_USE_OPENSSL=%OPENSSL% - cmake --build . --config %PRJ_CFG% --clean-first |