mirror of
https://github.com/rizinorg/cutter
synced 2026-08-11 16:23:06 -04:00
6 lines
224 B
PowerShell
6 lines
224 B
PowerShell
$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
|