From 9d4a8596dc5080fe459a2c4a97e859e707a88b8e Mon Sep 17 00:00:00 2001 From: Friedrich von Never Date: Mon, 12 Nov 2018 00:37:28 +0700 Subject: [PATCH] Copy OpenSSL libraries to the output (#215) [skip travis] --- .appveyor/after_build.ps1 | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.appveyor/after_build.ps1 b/.appveyor/after_build.ps1 index 06ee89850..a6837974d 100644 --- a/.appveyor/after_build.ps1 +++ b/.appveyor/after_build.ps1 @@ -1,3 +1,8 @@ +param ( + $VcpkgPath = 'c:\tools\vcpkg\', + $VcpkgPlatform = 'x64-windows' +) + $ErrorActionPreference = 'Stop' function Pack-Files($ext, $includeExe, $targetPath, $archiveName) { @@ -11,6 +16,8 @@ function Pack-Files($ext, $includeExe, $targetPath, $archiveName) { Copy-Item $env:QT_DIR\plugins\imageformats\qwebp.$ext $targetPath\imageformats\ Copy-Item $env:QT_DIR\plugins\imageformats\qjpeg.$ext $targetPath\imageformats\ Copy-Item $env:QT_DIR\plugins\platforms\qwindows.$ext $targetPath\platforms\ + Copy-Item $VcpkgPath\installed\$VcpkgPlatform\bin\ssleay32.$ext $targetPath\ + Copy-Item $VcpkgPath\installed\$VcpkgPlatform\bin\libeay32.$ext $targetPath\ $itemsToPack = @("$targetPath\*.$ext", "$targetPath\platforms\*.$ext", "$targetPath\imageformats\*.$ext") if ($includeExe) {