2009-09-28 11:43:28 -04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2006-02-19 18:47:13 -05:00
|
|
|
|
2009-09-28 11:43:28 -04:00
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
2006-02-19 18:47:13 -05:00
|
|
|
|
2009-09-28 11: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 18:47:13 -05:00
|
|
|
#ifndef cmInstallFilesGenerator_h
|
|
|
|
#define cmInstallFilesGenerator_h
|
|
|
|
|
|
|
|
#include "cmInstallGenerator.h"
|
|
|
|
|
|
|
|
/** \class cmInstallFilesGenerator
|
|
|
|
* \brief Generate file installation rules.
|
|
|
|
*/
|
2016-05-16 10:34:04 -04:00
|
|
|
class cmInstallFilesGenerator : public cmInstallGenerator
|
2006-02-19 18:47:13 -05:00
|
|
|
{
|
|
|
|
public:
|
2015-08-01 09:01:03 +02:00
|
|
|
cmInstallFilesGenerator(std::vector<std::string> const& files,
|
2006-03-03 18:44:32 -05:00
|
|
|
const char* dest, bool programs,
|
2006-08-17 14:48:54 -04:00
|
|
|
const char* file_permissions,
|
2006-05-05 14:57:19 -04:00
|
|
|
std::vector<std::string> const& configurations,
|
2016-05-16 10:34:04 -04:00
|
|
|
const char* component, MessageLevel message,
|
|
|
|
bool exclude_from_all, const char* rename,
|
2006-10-05 11:31:57 -04:00
|
|
|
bool optional = false);
|
2016-06-27 21:25:27 +02:00
|
|
|
~cmInstallFilesGenerator() CM_OVERRIDE;
|
2006-02-19 18:47:13 -05:00
|
|
|
|
2016-06-27 21:25:27 +02:00
|
|
|
void Compute(cmLocalGenerator* lg) CM_OVERRIDE;
|
2015-08-01 09:01:03 +02:00
|
|
|
|
2015-09-23 13:40:27 -04:00
|
|
|
std::string GetDestination(std::string const& config) const;
|
|
|
|
|
2006-02-19 18:47:13 -05:00
|
|
|
protected:
|
2016-06-27 21:25:27 +02:00
|
|
|
void GenerateScriptActions(std::ostream& os,
|
|
|
|
Indent const& indent) CM_OVERRIDE;
|
|
|
|
void GenerateScriptForConfig(std::ostream& os, const std::string& config,
|
|
|
|
Indent const& indent) CM_OVERRIDE;
|
2016-05-26 21:58:51 +02:00
|
|
|
void AddFilesInstallRule(std::ostream& os, std::string const& config,
|
2015-09-23 13:40:27 -04:00
|
|
|
Indent const& indent,
|
2014-02-21 16:47:34 -05:00
|
|
|
std::vector<std::string> const& files);
|
2014-02-21 16:45:26 -05:00
|
|
|
|
2015-08-01 09:01:03 +02:00
|
|
|
cmLocalGenerator* LocalGenerator;
|
2006-02-19 18:47:13 -05:00
|
|
|
std::vector<std::string> Files;
|
2006-08-17 14:48:54 -04:00
|
|
|
std::string FilePermissions;
|
2006-03-03 18:44:32 -05:00
|
|
|
std::string Rename;
|
2015-06-07 09:57:33 +02:00
|
|
|
bool Programs;
|
2006-10-05 11:31:57 -04:00
|
|
|
bool Optional;
|
2006-02-19 18:47:13 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|