mirror of
https://github.com/sqlitebrowser/sqlitebrowser.git
synced 2026-01-27 22:40:34 -06:00
Attempt #1 to work around WiX error CNDL0014
WiX doesn't seem to like the hyphen character ("-") being used
in Id's, which is a problem as it's used in the OpenSSL library
filenames.
This commit is contained in:
@@ -88,8 +88,8 @@
|
||||
<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 Source="$(var.OpenSSLPath)\libcrypto-1_1.dll" /></Component>
|
||||
<Component><File Source="$(var.OpenSSLPath)\libssl-1_1.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>
|
||||
<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>
|
||||
@@ -181,8 +181,8 @@
|
||||
<ComponentRef Id="Qt5Widgets.dll" />
|
||||
<ComponentRef Id="Qt5Xml.dll" />
|
||||
<!-- OpenSSL -->
|
||||
<ComponentRef Id="libcrypto-1_1.dll" />
|
||||
<ComponentRef Id="libssl-1_1.dll" />
|
||||
<ComponentRef Id="libcrypto.dll" />
|
||||
<ComponentRef Id="libssl.dll" />
|
||||
<!-- SQLite & SQLCipher -->
|
||||
<ComponentRef Id="sqlcipher.dll" />
|
||||
<ComponentRef Id="sqlite3.dll" />
|
||||
|
||||
Reference in New Issue
Block a user