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-05-15 21:12:40 +04:00
|
|
|
#ifndef cmCPackPropertiesGenerator_h
|
|
|
|
#define cmCPackPropertiesGenerator_h
|
|
|
|
|
2016-08-18 01:24:24 +03:00
|
|
|
#include <cmConfigure.h> // IWYU pragma: keep
|
|
|
|
|
2016-04-29 17:53:13 +03:00
|
|
|
#include "cmScriptGenerator.h"
|
2014-05-15 21:12:40 +04:00
|
|
|
|
2016-08-18 01:24:24 +03:00
|
|
|
#include <iosfwd>
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
class cmInstalledFile;
|
2015-07-25 18:55:34 +03:00
|
|
|
class cmLocalGenerator;
|
|
|
|
|
2014-05-15 21:12:40 +04:00
|
|
|
/** \class cmCPackPropertiesGenerator
|
|
|
|
* \brief Support class for generating CPackProperties.cmake.
|
|
|
|
*
|
|
|
|
*/
|
2016-05-16 17:34:04 +03:00
|
|
|
class cmCPackPropertiesGenerator : public cmScriptGenerator
|
2014-05-15 21:12:40 +04:00
|
|
|
{
|
|
|
|
public:
|
2016-05-16 17:34:04 +03:00
|
|
|
cmCPackPropertiesGenerator(cmLocalGenerator* lg,
|
|
|
|
cmInstalledFile const& installedFile,
|
|
|
|
std::vector<std::string> const& configurations);
|
2014-05-15 21:12:40 +04:00
|
|
|
|
|
|
|
protected:
|
2016-06-27 22:25:27 +03:00
|
|
|
void GenerateScriptForConfig(std::ostream& os, const std::string& config,
|
|
|
|
Indent const& indent) CM_OVERRIDE;
|
2014-05-15 21:12:40 +04:00
|
|
|
|
2015-07-25 18:55:34 +03:00
|
|
|
cmLocalGenerator* LG;
|
2014-05-15 21:12:40 +04:00
|
|
|
cmInstalledFile const& InstalledFile;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|