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