summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--appveyor.yml15
1 files changed, 0 insertions, 15 deletions
diff --git a/appveyor.yml b/appveyor.yml
index 1643549..7be4e8f 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -14,21 +14,6 @@ environment:
cache:
- c:\deps -> appveyor.yml
-install:
- - ps: $file = "Win${env:BITS}OpenSSL-1_0_2j.exe"
- - ps: $dir = "c:\deps"
- - ps: $exists = Test-Path "$dir\$file"
- - ps: >-
- If ($exists -ne $True) {
- Write-Host "Downloading: $dir\$file."
- New-Item -Path $dir -type directory -force
- Start-FileDownload "http://slproweb.com/download/$file" -FileName "$dir\$file"
- } Else {
- Write-Host "Reusing cached: $dir\$file."
- }
- - ps: >-
- & "$dir\$file" /silent /verysilent /sp- /suppressmsgboxes /dir="c:\OpenSSL"
-
before_build:
- cmake -DBUILD_SHARED_LIBS=ON -DBUILD_STATIC_LIBS=ON -DBUILD_TESTS=ON -DENABLE_SSL_SUPPORT=True -G"%GENERATOR%" .