2016-09-27 15:01:08 -04:00
|
|
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
2014-02-24 23:21:12 +01:00
|
|
|
#ifndef cmWIXFeaturesSourceWriter_h
|
|
|
|
#define cmWIXFeaturesSourceWriter_h
|
|
|
|
|
2016-09-09 10:53:26 +02:00
|
|
|
#include "cmWIXPatch.h"
|
2014-02-24 23:21:12 +01:00
|
|
|
#include "cmWIXSourceWriter.h"
|
2016-04-29 09:40:20 -04:00
|
|
|
|
2014-02-24 23:21:12 +01:00
|
|
|
#include <CPack/cmCPackGenerator.h>
|
|
|
|
|
|
|
|
/** \class cmWIXFeaturesSourceWriter
|
|
|
|
* \brief Helper class to generate features.wxs
|
|
|
|
*/
|
|
|
|
class cmWIXFeaturesSourceWriter : public cmWIXSourceWriter
|
|
|
|
{
|
|
|
|
public:
|
2016-09-06 12:11:00 +02:00
|
|
|
cmWIXFeaturesSourceWriter(cmCPackLog* logger, std::string const& filename,
|
|
|
|
GuidType componentGuidType);
|
2014-02-24 23:21:12 +01:00
|
|
|
|
2016-05-16 10:34:04 -04:00
|
|
|
void CreateCMakePackageRegistryEntry(std::string const& package,
|
|
|
|
std::string const& upgradeGuid);
|
2014-02-24 23:21:12 +01:00
|
|
|
|
2016-09-09 10:53:26 +02:00
|
|
|
void EmitFeatureForComponentGroup(const cmCPackComponentGroup& group,
|
|
|
|
cmWIXPatch& patch);
|
2014-02-24 23:21:12 +01:00
|
|
|
|
2016-09-09 10:53:26 +02:00
|
|
|
void EmitFeatureForComponent(const cmCPackComponent& component,
|
|
|
|
cmWIXPatch& patch);
|
2014-02-24 23:21:12 +01:00
|
|
|
|
|
|
|
void EmitComponentRef(std::string const& id);
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|