Skip to content

Commit

Permalink
Update OpenSSL 1.1.1 file names
Browse files Browse the repository at this point in the history
  • Loading branch information
justinclift committed Apr 12, 2020
1 parent 1db1e6b commit b20a822
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions installer/windows/product.wxs
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,14 @@
<Component><File Source="$(var.QtPath)\bin\Qt5PrintSupport.dll" /></Component>
<Component><File Source="$(var.QtPath)\bin\Qt5Widgets.dll" /></Component>
<Component><File Source="$(var.QtPath)\bin\Qt5Xml.dll" /></Component>
<Component><File Id="libcrypto.dll" Source="$(var.OpenSSLPath)\libcrypto-1_1.dll" /></Component>
<Component><File Id="libssl.dll" Source="$(var.OpenSSLPath)\libssl-1_1.dll" /></Component>
<!-- OpenSSL 1.1.1 -->
<?if $(sys.BUILDARCH)="x64"?>
<Component><File Id="libcrypto.dll" Source="$(var.OpenSSLPath)\libcrypto-1_1-x64.dll" /></Component>
<Component><File Id="libssl.dll" Source="$(var.OpenSSLPath)\libssl-1_1-x64.dll" /></Component>
<?elseif $(sys.BUILDARCH)="x86"?>
<Component><File Id="libcrypto.dll" Source="$(var.OpenSSLPath)\libcrypto-1_1.dll" /></Component>
<Component><File Id="libssl.dll" Source="$(var.OpenSSLPath)\libssl-1_1.dll" /></Component>
<?endif?>
<Component><File Source="$(var.SQLCipherPath)\sqlcipher.dll" /></Component>
<Component><File Source="$(var.SQLitePath)\sqlite3.dll" /></Component>
<Component><File Source="$(var.SQLiteExePath)\DB Browser for SQLite.exe" Checksum="yes" /></Component>
Expand Down

0 comments on commit b20a822

Please sign in to comment.