cutter/scripts/bundle_openssl.ps1

7 lines
224 B
PowerShell
Raw Normal View History

2018-12-03 19:39:51 +00:00
$arch = $args[0]
$dist = $args[1]
$libpath = If ($arch -eq "x64") {"C:\OpenSSL-Win64\bin"} Else {"C:\OpenSSL-Win32\bin"}
Copy-Item $libpath\libeay32.dll -Destination $dist
Copy-Item $libpath\ssleay32.dll -Destination $dist