2014-05-15 21:12:40 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2014 Kitware, Inc., Insight Software Consortium
|
|
|
|
|
|
|
|
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 cmCPackPropertiesGenerator_h
|
|
|
|
#define cmCPackPropertiesGenerator_h
|
|
|
|
|
|
|
|
#include "cmInstalledFile.h"
|
2016-04-29 17:53:13 +03:00
|
|
|
#include "cmScriptGenerator.h"
|
2014-05-15 21:12:40 +04:00
|
|
|
|
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
|