mirror of
https://github.com/agersant/polaris
synced 2024-11-10 10:14:12 +00:00
Added missing DLL in installer
This commit is contained in:
parent
0f10518ee7
commit
606758ee1b
4 changed files with 6 additions and 4 deletions
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -1,6 +1,6 @@
|
|||
[root]
|
||||
name = "polaris"
|
||||
version = "0.2.0"
|
||||
version = "0.3.0"
|
||||
dependencies = [
|
||||
"ape 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"app_dirs 1.1.1 (git+https://github.com/agersant/app-dirs-rs)",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "polaris"
|
||||
version = "0.2.0"
|
||||
version = "0.3.0"
|
||||
authors = ["Antoine Gersant <antoine.gersant@lesforges.org>"]
|
||||
|
||||
[features]
|
||||
|
|
|
@ -14,6 +14,7 @@ Remove-Item -Recurse .\release\tmp\*
|
|||
"Copying to output directory"
|
||||
Copy-Item .\res\windows\libeay32.dll .\release\tmp\
|
||||
Copy-Item .\res\windows\libeay32md.dll .\release\tmp\
|
||||
Copy-Item .\res\windows\ssleay32md.dll .\release\tmp\
|
||||
Copy-Item .\res\windows\installer\license.rtf .\release\tmp\
|
||||
Copy-Item .\res\windows\installer\banner.bmp .\release\tmp\
|
||||
Copy-Item .\res\windows\installer\dialog.bmp .\release\tmp\
|
||||
|
@ -24,7 +25,7 @@ Copy-Item .\web\ .\release\tmp\ -recurse
|
|||
""
|
||||
"Creating installer"
|
||||
candle -wx -ext WixUtilExtension -arch x64 -out .\release\tmp\installer.wixobj .\res\windows\installer\installer.wxs
|
||||
light -wx -ext WixUtilExtension -ext WixUIExtension -spdb -out .\release\Polaris_0.2.0.msi .\release\tmp\installer.wixobj
|
||||
light -wx -ext WixUtilExtension -ext WixUIExtension -spdb -out .\release\Polaris_0.3.0.msi .\release\tmp\installer.wixobj
|
||||
|
||||
"Cleaning up"
|
||||
Remove-Item -Recurse .\release\tmp
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<?xml version='1.0' encoding='windows-1252'?>
|
||||
<Wix xmlns='http://schemas.microsoft.com/wix/2006/wi' xmlns:util="http://schemas.microsoft.com/wix/UtilExtension">
|
||||
<Product Name='Polaris' Id='33986EB1-E35C-4E01-817C-FA23F0C0FB88' UpgradeCode='9D86F109-E1EC-4C67-826C-8FB813838C49' Language='1033' Codepage='1252' Version='0.2.0' Manufacturer='Antoine Gersant'>
|
||||
<Product Name='Polaris' Id='587DEECF-9B89-425E-A333-79FF9A71196C' UpgradeCode='9D86F109-E1EC-4C67-826C-8FB813838C49' Language='1033' Codepage='1252' Version='0.2.0' Manufacturer='Antoine Gersant'>
|
||||
|
||||
<Package Id='*' Keywords='Installer' Platform='x64' InstallPrivileges='elevated' InstallScope='perMachine' Description='Polaris Installer' Manufacturer='Antoine Gersant' Languages='1033' Compressed='yes' SummaryCodepage='1252' />
|
||||
|
||||
|
@ -24,6 +24,7 @@
|
|||
<Component Id='OpenSSL' Guid='8F4A07F6-CADB-4001-92F6-C7184A053B3B'>
|
||||
<File Id='LibEAY' Name='libeay32.dll' Source='libeay32.dll' />
|
||||
<File Id='LibEAYmd' Name='libeay32md.dll' Source='libeay32md.dll' />
|
||||
<File Id='SSLEAY32md' Name='ssleay32md.dll' Source='ssleay32md.dll' />
|
||||
</Component>
|
||||
|
||||
<Directory Id='web' Name='web'>
|
||||
|
|
Loading…
Reference in a new issue