2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2006-02-19 23:25:27 +03:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
2006-02-19 23:25:27 +03:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
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.
|
|
|
|
============================================================================*/
|
2006-02-19 23:25:27 +03:00
|
|
|
#ifndef cmInstallScriptGenerator_h
|
|
|
|
#define cmInstallScriptGenerator_h
|
|
|
|
|
2016-09-01 21:59:28 +03:00
|
|
|
#include <cmConfigure.h>
|
|
|
|
|
2006-02-19 23:25:27 +03:00
|
|
|
#include "cmInstallGenerator.h"
|
|
|
|
|
2016-09-01 21:59:28 +03:00
|
|
|
#include <iosfwd>
|
|
|
|
#include <string>
|
|
|
|
|
2006-02-19 23:25:27 +03:00
|
|
|
/** \class cmInstallScriptGenerator
|
|
|
|
* \brief Generate target installation rules.
|
|
|
|
*/
|
2016-05-16 17:34:04 +03:00
|
|
|
class cmInstallScriptGenerator : public cmInstallGenerator
|
2006-02-19 23:25:27 +03:00
|
|
|
{
|
|
|
|
public:
|
2007-10-15 15:08:15 +04:00
|
|
|
cmInstallScriptGenerator(const char* script, bool code,
|
2016-05-16 17:34:04 +03:00
|
|
|
const char* component, bool exclude_from_all);
|
2016-06-27 22:25:27 +03:00
|
|
|
~cmInstallScriptGenerator() CM_OVERRIDE;
|
2006-02-19 23:25:27 +03:00
|
|
|
|
|
|
|
protected:
|
2016-06-27 22:25:27 +03:00
|
|
|
void GenerateScript(std::ostream& os) CM_OVERRIDE;
|
2006-02-19 23:25:27 +03:00
|
|
|
std::string Script;
|
2006-04-13 06:04:50 +04:00
|
|
|
bool Code;
|
2006-02-19 23:25:27 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|