2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2006-08-17 22:48:54 +04: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-08-17 22:48:54 +04: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-08-17 22:48:54 +04:00
|
|
|
#include "cmInstallDirectoryGenerator.h"
|
|
|
|
|
|
|
|
#include "cmTarget.h"
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
cmInstallDirectoryGenerator
|
|
|
|
::cmInstallDirectoryGenerator(std::vector<std::string> const& dirs,
|
|
|
|
const char* dest,
|
|
|
|
const char* file_permissions,
|
|
|
|
const char* dir_permissions,
|
|
|
|
std::vector<std::string> const& configurations,
|
2006-08-22 00:55:03 +04:00
|
|
|
const char* component,
|
2014-06-24 18:45:07 +04:00
|
|
|
MessageLevel message,
|
2009-02-24 19:41:40 +03:00
|
|
|
const char* literal_args,
|
|
|
|
bool optional):
|
2014-06-24 18:45:07 +04:00
|
|
|
cmInstallGenerator(dest, configurations, component, message),
|
|
|
|
Directories(dirs),
|
2006-08-17 22:48:54 +04:00
|
|
|
FilePermissions(file_permissions), DirPermissions(dir_permissions),
|
2009-02-24 19:41:40 +03:00
|
|
|
LiteralArguments(literal_args), Optional(optional)
|
2006-08-17 22:48:54 +04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
cmInstallDirectoryGenerator
|
|
|
|
::~cmInstallDirectoryGenerator()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
2007-07-02 22:56:57 +04:00
|
|
|
void
|
|
|
|
cmInstallDirectoryGenerator::GenerateScriptActions(std::ostream& os,
|
|
|
|
Indent const& indent)
|
2006-08-17 22:48:54 +04:00
|
|
|
{
|
|
|
|
// Write code to install the directories.
|
2007-06-29 00:11:18 +04:00
|
|
|
const char* no_rename = 0;
|
2015-02-11 19:48:13 +03:00
|
|
|
this->AddInstallRule(os,
|
|
|
|
this->Destination,
|
|
|
|
cmInstallType_DIRECTORY,
|
2007-06-29 00:11:18 +04:00
|
|
|
this->Directories,
|
2009-04-27 21:20:57 +04:00
|
|
|
this->Optional,
|
2007-06-29 00:11:18 +04:00
|
|
|
this->FilePermissions.c_str(),
|
|
|
|
this->DirPermissions.c_str(),
|
2007-07-02 22:56:57 +04:00
|
|
|
no_rename, this->LiteralArguments.c_str(),
|
|
|
|
indent);
|
2006-08-17 22:48:54 +04:00
|
|
|
}
|