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. */
|
2006-08-17 22:48:54 +04:00
|
|
|
#ifndef cmInstallDirectoryGenerator_h
|
|
|
|
#define cmInstallDirectoryGenerator_h
|
|
|
|
|
|
|
|
#include "cmInstallGenerator.h"
|
2016-09-01 21:59:28 +03:00
|
|
|
#include "cmScriptGenerator.h"
|
|
|
|
|
|
|
|
#include <cmConfigure.h>
|
|
|
|
#include <iosfwd>
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
class cmLocalGenerator;
|
2006-08-17 22:48:54 +04:00
|
|
|
|
|
|
|
/** \class cmInstallDirectoryGenerator
|
|
|
|
* \brief Generate directory installation rules.
|
|
|
|
*/
|
2016-05-16 17:34:04 +03:00
|
|
|
class cmInstallDirectoryGenerator : public cmInstallGenerator
|
2006-08-17 22:48:54 +04:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
cmInstallDirectoryGenerator(std::vector<std::string> const& dirs,
|
2016-05-16 17:34:04 +03:00
|
|
|
const char* dest, const char* file_permissions,
|
2006-08-17 22:48:54 +04:00
|
|
|
const char* dir_permissions,
|
|
|
|
std::vector<std::string> const& configurations,
|
2016-05-16 17:34:04 +03:00
|
|
|
const char* component, MessageLevel message,
|
|
|
|
bool exclude_from_all, const char* literal_args,
|
2009-02-24 19:41:40 +03:00
|
|
|
bool optional = false);
|
2016-06-27 22:25:27 +03:00
|
|
|
~cmInstallDirectoryGenerator() CM_OVERRIDE;
|
2006-08-17 22:48:54 +04:00
|
|
|
|
2016-06-27 22:25:27 +03:00
|
|
|
void Compute(cmLocalGenerator* lg) CM_OVERRIDE;
|
2015-09-24 00:15:29 +03:00
|
|
|
|
|
|
|
std::string GetDestination(std::string const& config) const;
|
|
|
|
|
2006-08-17 22:48:54 +04:00
|
|
|
protected:
|
2016-06-27 22:25:27 +03: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-16 17:34:04 +03:00
|
|
|
void AddDirectoryInstallRule(std::ostream& os, const std::string& config,
|
2016-01-12 23:01:07 +03:00
|
|
|
Indent const& indent,
|
|
|
|
std::vector<std::string> const& dirs);
|
2015-09-24 00:15:29 +03:00
|
|
|
cmLocalGenerator* LocalGenerator;
|
2006-08-17 22:48:54 +04:00
|
|
|
std::vector<std::string> Directories;
|
|
|
|
std::string FilePermissions;
|
|
|
|
std::string DirPermissions;
|
2006-08-22 00:55:03 +04:00
|
|
|
std::string LiteralArguments;
|
2009-02-24 19:41:40 +03:00
|
|
|
bool Optional;
|
2006-08-17 22:48:54 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|