2014-02-25 02:21:12 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
2015-02-21 14:38:14 +03:00
|
|
|
Copyright 2014-2015 Kitware, Inc.
|
2014-02-25 02:21:12 +04:00
|
|
|
|
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
|
|
|
|
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
|
|
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
See the License for more information.
|
|
|
|
============================================================================*/
|
|
|
|
|
|
|
|
#ifndef cmWIXFilesSourceWriter_h
|
|
|
|
#define cmWIXFilesSourceWriter_h
|
|
|
|
|
|
|
|
#include "cmWIXSourceWriter.h"
|
2016-04-29 16:40:20 +03:00
|
|
|
|
2014-02-25 02:21:12 +04:00
|
|
|
#include "cmWIXPatch.h"
|
2016-04-29 17:53:13 +03:00
|
|
|
#include "cmWIXShortcut.h"
|
2014-02-25 02:21:12 +04:00
|
|
|
|
|
|
|
#include <CPack/cmCPackGenerator.h>
|
|
|
|
|
|
|
|
/** \class cmWIXFilesSourceWriter
|
|
|
|
* \brief Helper class to generate files.wxs
|
|
|
|
*/
|
|
|
|
class cmWIXFilesSourceWriter : public cmWIXSourceWriter
|
|
|
|
{
|
|
|
|
public:
|
2016-05-16 17:34:04 +03:00
|
|
|
cmWIXFilesSourceWriter(cmCPackLog* logger, std::string const& filename);
|
2014-02-25 02:21:12 +04:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
void EmitShortcut(std::string const& id, cmWIXShortcut const& shortcut,
|
|
|
|
std::string const& shortcutPrefix, size_t shortcutIndex);
|
2014-02-25 02:21:12 +04:00
|
|
|
|
|
|
|
void EmitRemoveFolder(std::string const& id);
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
void EmitInstallRegistryValue(std::string const& registryKey,
|
|
|
|
std::string const& cpackComponentName,
|
|
|
|
std::string const& suffix);
|
2014-02-25 02:21:12 +04:00
|
|
|
|
|
|
|
void EmitUninstallShortcut(std::string const& packageName);
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
std::string EmitComponentCreateFolder(std::string const& directoryId,
|
|
|
|
std::string const& guid,
|
|
|
|
cmInstalledFile const* installedFile);
|
2014-02-25 02:21:12 +04:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
std::string EmitComponentFile(std::string const& directoryId,
|
|
|
|
std::string const& id,
|
|
|
|
std::string const& filePath, cmWIXPatch& patch,
|
|
|
|
cmInstalledFile const* installedFile);
|
|
|
|
};
|
2014-02-25 02:21:12 +04:00
|
|
|
|
|
|
|
#endif
|