From a11c1fa04389339b262081de70245221bdf6ca7a Mon Sep 17 00:00:00 2001 From: Marc-André Lureau Date: Thu, 10 Jan 2013 02:47:31 +0100 Subject: wixl: add WixLaunchConditions --- tools/wixl/wix.vala | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'tools/wixl') diff --git a/tools/wixl/wix.vala b/tools/wixl/wix.vala index d3468c5..801d77d 100644 --- a/tools/wixl/wix.vala +++ b/tools/wixl/wix.vala @@ -419,6 +419,12 @@ namespace Wixl { } } + public class WixLaunchConditions: WixAction { + static construct { + name = "LaunchConditions"; + } + } + public class WixSequence: WixElement { public override void accept (WixNodeVisitor visitor) throws GLib.Error { base.accept (visitor); @@ -432,6 +438,7 @@ namespace Wixl { add_child_types (child_types, { typeof (WixRemoveExistingProducts), + typeof (WixLaunchConditions), }); } } -- cgit