mirror of
https://github.com/onionshare/onionshare.git
synced 2025-02-25 00:50:07 -05:00
Finish making the WiX installer 64-bit
This commit is contained in:
parent
f623cf609d
commit
1020121c33
@ -117,6 +117,7 @@ def wix_build_dir_xml(root, data):
|
|||||||
"Component",
|
"Component",
|
||||||
Id="ApplicationShortcuts",
|
Id="ApplicationShortcuts",
|
||||||
Guid="539e7de8-a124-4c09-aa55-0dd516aad7bc",
|
Guid="539e7de8-a124-4c09-aa55-0dd516aad7bc",
|
||||||
|
Win64="yes",
|
||||||
)
|
)
|
||||||
ET.SubElement(
|
ET.SubElement(
|
||||||
component_el,
|
component_el,
|
||||||
@ -152,6 +153,7 @@ def wix_build_components_xml(root, data):
|
|||||||
"Component",
|
"Component",
|
||||||
Id=subdata["component_id"],
|
Id=subdata["component_id"],
|
||||||
Guid=subdata["component_guid"],
|
Guid=subdata["component_guid"],
|
||||||
|
Win64="yes",
|
||||||
)
|
)
|
||||||
for filename in subdata["files"]:
|
for filename in subdata["files"]:
|
||||||
file_el = ET.SubElement(
|
file_el = ET.SubElement(
|
||||||
@ -218,10 +220,11 @@ def msi_package(build_path, msi_path, product_update_code):
|
|||||||
Keywords="Installer",
|
Keywords="Installer",
|
||||||
Description="OnionShare $(var.ProductVersion) Installer",
|
Description="OnionShare $(var.ProductVersion) Installer",
|
||||||
Manufacturer="Micah Lee, et al.",
|
Manufacturer="Micah Lee, et al.",
|
||||||
InstallerVersion="100",
|
InstallerVersion="200",
|
||||||
Languages="1033",
|
Languages="1033",
|
||||||
Compressed="yes",
|
Compressed="yes",
|
||||||
SummaryCodepage="1252",
|
SummaryCodepage="1252",
|
||||||
|
Platform="x64",
|
||||||
)
|
)
|
||||||
ET.SubElement(product_el, "Media", Id="1", Cabinet="product.cab", EmbedCab="yes")
|
ET.SubElement(product_el, "Media", Id="1", Cabinet="product.cab", EmbedCab="yes")
|
||||||
ET.SubElement(
|
ET.SubElement(
|
||||||
|
Loading…
x
Reference in New Issue
Block a user