summaryrefslogtreecommitdiffstats
path: root/tools/wixl
diff options
context:
space:
mode:
Diffstat (limited to 'tools/wixl')
-rw-r--r--tools/wixl/wix.vala7
1 files changed, 7 insertions, 0 deletions
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),
});
}
}