[msitools] wixl: add component Win64 attribute
- From: Marc-Andre Lureau <malureau src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [msitools] wixl: add component Win64 attribute
- Date: Fri, 12 Apr 2013 03:25:54 +0000 (UTC)
commit 53866525b5c0388778ac973f35fec5111a8480e7
Author: Marc-André Lureau <marcandre lureau gmail com>
Date: Fri Apr 12 04:51:42 2013 +0200
wixl: add component Win64 attribute
tools/wixl/builder.vala | 3 +++
tools/wixl/wix.vala | 1 +
2 files changed, 4 insertions(+), 0 deletions(-)
---
diff --git a/tools/wixl/builder.vala b/tools/wixl/builder.vala
index 9084bcb..0be32b0 100644
--- a/tools/wixl/builder.vala
+++ b/tools/wixl/builder.vala
@@ -393,6 +393,9 @@ namespace Wixl {
else
uuid = get_uuid (comp.Guid);
+ if (parse_yesno (comp.Win64))
+ attr |= ComponentAttribute.64BIT;
+
db.table_component.add (comp.Id, uuid, parent.Id, attr,
comp.key != null ? comp.key.Id : null);
diff --git a/tools/wixl/wix.vala b/tools/wixl/wix.vala
index 200753c..52ec667 100644
--- a/tools/wixl/wix.vala
+++ b/tools/wixl/wix.vala
@@ -1003,6 +1003,7 @@ namespace Wixl {
}
public string Guid { get; set; }
+ public string Win64 { get; set; }
public WixKeyElement? key;
public List<WixFeature> in_feature;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]