diff options
author | Richard Levitte <levitte@openssl.org> | 2016-03-16 14:58:17 +0100 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2016-03-16 18:08:31 +0100 |
commit | f527b6e4652b0390b4b5de597af6f18f06c3de0e (patch) | |
tree | 179fabd9e5adea7ba346c8b0ae2cfdfd6f2999e7 | |
parent | Fix up CHANGES (diff) | |
download | openssl-f527b6e4652b0390b4b5de597af6f18f06c3de0e.tar.xz openssl-f527b6e4652b0390b4b5de597af6f18f06c3de0e.zip |
Appveyor - make sure to actually build "shared" in the shared configuration
Reviewed-by: Matt Caswell <matt@openssl.org>
-rw-r--r-- | appveyor.yml | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/appveyor.yml b/appveyor.yml index 6367c3ddbc..7496a9b3f3 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -19,9 +19,15 @@ before_build: $env:VCVARS_PLATFORM="amd64" $env:TARGET="VC-WIN64A" } + - ps: >- + If ($env:Configuration -Match "shared") { + $env:SHARED="shared" + } Else { + $env:SHARED="" + } - ps: $env:VSCOMNTOOLS=(Get-Content ("env:VS" + "$env:VSVER" + "0COMNTOOLS")) - call "%VSCOMNTOOLS%\..\..\VC\vcvarsall.bat" %VCVARS_PLATFORM% - - perl Configure %TARGET% no-asm + - perl Configure %TARGET% no-asm %SHARED% build_script: - nmake |