From 5e365f5665a53697376e718e30f62a90e0e81376 Mon Sep 17 00:00:00 2001 From: Petr Bena Date: Wed, 12 Jul 2017 14:55:15 +0200 Subject: [PATCH] fixed SSL library packaging on Windows --- windows/release.ps1 | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/windows/release.ps1 b/windows/release.ps1 index 33cc40f9b..ed0c87070 100644 --- a/windows/release.ps1 +++ b/windows/release.ps1 @@ -181,10 +181,10 @@ if ($mingw) cd $root_path echo "Preparing the package structure" mkdir release | Out-Null -mkdir release\deps | Out-Null mkdir release\platforms | Out-Null +mkdir release\extensions | Out-Null cp .\build\Release\*.dll release -cp .\build\Release\extensions\*.dll release +cp .\build\Release\extensions\*.dll release\extensions cp .\build\Release\*.lib release cp .\build\Release\huggle.exe release if ($python) @@ -194,8 +194,8 @@ if ($python) # get the qt cp ..\huggle\Resources\huggle.ico huggle.ico cp ..\huggle\Resources\huggle.ico release -cp $openssl_path\bin\ssleay32.dll release\deps -cp $openssl_path\bin\libeay32.dll release\deps +cp $openssl_path\bin\ssleay32.dll release +cp $openssl_path\bin\libeay32.dll release # Set the environment variable needed by windeployqt, todo: check if it's already set $env:VCINSTALLDIR = $vcinstall_path