From: Sergei Nikulov Date: Thu, 28 Jan 2016 12:57:28 +0000 (+0300) Subject: AppVeyor: updated to handle OpenSSL/WinSSL builds X-Git-Tag: curl-7_47_1~24 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7a8a7ca7b01d3e37467cf3779df67f1e852541f9;p=curl AppVeyor: updated to handle OpenSSL/WinSSL builds Closes #621 --- 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