summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorMarc-André Lureau <marcandre.lureau@gmail.com>2013-01-10 02:47:31 +0100
committerMarc-André Lureau <marcandre.lureau@gmail.com>2013-01-10 02:47:48 +0100
commita11c1fa04389339b262081de70245221bdf6ca7a (patch)
tree07bc0f4efa1cecb0a6b0eb535e2f54b72600156d /tools
parentd7fc1eb0a03338c620aaf2efe8d8ad4c2e03f400 (diff)
downloadmsitools-a11c1fa04389339b262081de70245221bdf6ca7a.tar.gz
msitools-a11c1fa04389339b262081de70245221bdf6ca7a.tar.xz
msitools-a11c1fa04389339b262081de70245221bdf6ca7a.zip
wixl: add WixLaunchConditions
Diffstat (limited to 'tools')
-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),
});
}
}