2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2006-02-20 02:47:13 +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-20 02:47:13 +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-20 02:47:13 +03:00
|
|
|
#ifndef cmInstallFilesGenerator_h
|
|
|
|
#define cmInstallFilesGenerator_h
|
|
|
|
|
|
|
|
#include "cmInstallGenerator.h"
|
|
|
|
|
|
|
|
/** \class cmInstallFilesGenerator
|
|
|
|
* \brief Generate file installation rules.
|
|
|
|
*/
|
|
|
|
class cmInstallFilesGenerator: public cmInstallGenerator
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
cmInstallFilesGenerator(std::vector<std::string> const& files,
|
2006-03-04 02:44:32 +03:00
|
|
|
const char* dest, bool programs,
|
2006-08-17 22:48:54 +04:00
|
|
|
const char* file_permissions,
|
2006-05-05 22:57:19 +04:00
|
|
|
std::vector<std::string> const& configurations,
|
2006-03-30 22:33:48 +04:00
|
|
|
const char* component,
|
2006-10-05 19:31:57 +04:00
|
|
|
const char* rename,
|
|
|
|
bool optional = false);
|
2006-02-20 02:47:13 +03:00
|
|
|
virtual ~cmInstallFilesGenerator();
|
|
|
|
|
|
|
|
protected:
|
2007-07-02 22:56:57 +04:00
|
|
|
virtual void GenerateScriptActions(std::ostream& os, Indent const& indent);
|
2006-02-20 02:47:13 +03:00
|
|
|
std::vector<std::string> Files;
|
|
|
|
bool Programs;
|
2006-08-17 22:48:54 +04:00
|
|
|
std::string FilePermissions;
|
2006-03-04 02:44:32 +03:00
|
|
|
std::string Rename;
|
2006-10-05 19:31:57 +04:00
|
|
|
bool Optional;
|
2006-02-20 02:47:13 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|