summaryrefslogtreecommitdiffstats
path: root/Source/CPack/WiX/cmWIXFeaturesSourceWriter.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2016-09-12 13:31:35 (GMT)
committerCMake Topic Stage <kwrobot@kitware.com>2016-09-12 13:31:35 (GMT)
commitf27f6f8f3fa571d656edba6f254bf47cea0bb6d8 (patch)
tree71f37b7aee19516cfe752f4bf97beaddb4a8be2e /Source/CPack/WiX/cmWIXFeaturesSourceWriter.h
parent58e56607c12789b41a722e03576c090584da4bf6 (diff)
parentc0bccc51df0eda22b4a7aa5833e1204412b39fc8 (diff)
downloadCMake-f27f6f8f3fa571d656edba6f254bf47cea0bb6d8.zip
CMake-f27f6f8f3fa571d656edba6f254bf47cea0bb6d8.tar.gz
CMake-f27f6f8f3fa571d656edba6f254bf47cea0bb6d8.tar.bz2
Merge topic 'wix-feature-patch'
c0bccc51 CPackWIX: Enabled patching of WIX <Feature> tags
Diffstat (limited to 'Source/CPack/WiX/cmWIXFeaturesSourceWriter.h')
-rw-r--r--Source/CPack/WiX/cmWIXFeaturesSourceWriter.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/Source/CPack/WiX/cmWIXFeaturesSourceWriter.h b/Source/CPack/WiX/cmWIXFeaturesSourceWriter.h
index 9974b63..124ed42 100644
--- a/Source/CPack/WiX/cmWIXFeaturesSourceWriter.h
+++ b/Source/CPack/WiX/cmWIXFeaturesSourceWriter.h
@@ -13,6 +13,7 @@
#ifndef cmWIXFeaturesSourceWriter_h
#define cmWIXFeaturesSourceWriter_h
+#include "cmWIXPatch.h"
#include "cmWIXSourceWriter.h"
#include <CPack/cmCPackGenerator.h>
@@ -29,9 +30,11 @@ public:
void CreateCMakePackageRegistryEntry(std::string const& package,
std::string const& upgradeGuid);
- void EmitFeatureForComponentGroup(const cmCPackComponentGroup& group);
+ void EmitFeatureForComponentGroup(const cmCPackComponentGroup& group,
+ cmWIXPatch& patch);
- void EmitFeatureForComponent(const cmCPackComponent& component);
+ void EmitFeatureForComponent(const cmCPackComponent& component,
+ cmWIXPatch& patch);
void EmitComponentRef(std::string const& id);
};