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
|
|
|
#include "cmInstallFilesGenerator.h"
|
|
|
|
|
2014-02-22 01:47:34 +04:00
|
|
|
#include "cmGeneratorExpression.h"
|
2016-04-29 17:53:13 +03:00
|
|
|
#include "cmLocalGenerator.h"
|
2014-05-23 22:59:11 +04:00
|
|
|
#include "cmMakefile.h"
|
2014-02-22 01:47:34 +04:00
|
|
|
#include "cmSystemTools.h"
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
cmInstallFilesGenerator::cmInstallFilesGenerator(
|
|
|
|
std::vector<std::string> const& files, const char* dest, bool programs,
|
|
|
|
const char* file_permissions, std::vector<std::string> const& configurations,
|
|
|
|
const char* component, MessageLevel message, bool exclude_from_all,
|
|
|
|
const char* rename, bool optional)
|
|
|
|
: cmInstallGenerator(dest, configurations, component, message,
|
|
|
|
exclude_from_all)
|
|
|
|
, LocalGenerator(0)
|
|
|
|
, Files(files)
|
|
|
|
, FilePermissions(file_permissions)
|
|
|
|
, Rename(rename)
|
|
|
|
, Programs(programs)
|
|
|
|
, Optional(optional)
|
2006-02-20 02:47:13 +03:00
|
|
|
{
|
2015-09-23 20:40:27 +03:00
|
|
|
// We need per-config actions if the destination has generator expressions.
|
2016-05-16 17:34:04 +03:00
|
|
|
if (cmGeneratorExpression::Find(Destination) != std::string::npos) {
|
2015-09-23 20:40:27 +03:00
|
|
|
this->ActionsPerConfig = true;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2015-09-23 20:40:27 +03:00
|
|
|
|
2014-02-22 01:47:34 +04:00
|
|
|
// We need per-config actions if any files have generator expressions.
|
2016-05-16 17:34:04 +03:00
|
|
|
for (std::vector<std::string>::const_iterator i = files.begin();
|
|
|
|
!this->ActionsPerConfig && i != files.end(); ++i) {
|
|
|
|
if (cmGeneratorExpression::Find(*i) != std::string::npos) {
|
2014-02-22 01:47:34 +04:00
|
|
|
this->ActionsPerConfig = true;
|
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2006-02-20 02:47:13 +03:00
|
|
|
}
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
cmInstallFilesGenerator::~cmInstallFilesGenerator()
|
2006-02-20 02:47:13 +03:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2015-08-01 10:01:03 +03:00
|
|
|
void cmInstallFilesGenerator::Compute(cmLocalGenerator* lg)
|
|
|
|
{
|
|
|
|
this->LocalGenerator = lg;
|
|
|
|
}
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
std::string cmInstallFilesGenerator::GetDestination(
|
|
|
|
std::string const& config) const
|
2015-09-23 20:40:27 +03:00
|
|
|
{
|
|
|
|
cmGeneratorExpression ge;
|
2016-05-16 17:34:04 +03:00
|
|
|
return ge.Parse(this->Destination)->Evaluate(this->LocalGenerator, config);
|
2015-09-23 20:40:27 +03:00
|
|
|
}
|
|
|
|
|
2014-02-22 01:47:34 +04:00
|
|
|
void cmInstallFilesGenerator::AddFilesInstallRule(
|
2016-05-16 17:34:04 +03:00
|
|
|
std::ostream& os, const std::string config, Indent const& indent,
|
2014-02-22 01:47:34 +04:00
|
|
|
std::vector<std::string> const& files)
|
2006-02-20 02:47:13 +03:00
|
|
|
{
|
|
|
|
// Write code to install the files.
|
2007-06-29 00:11:18 +04:00
|
|
|
const char* no_dir_permissions = 0;
|
2016-05-16 17:34:04 +03:00
|
|
|
this->AddInstallRule(
|
|
|
|
os, this->GetDestination(config),
|
|
|
|
(this->Programs ? cmInstallType_PROGRAMS : cmInstallType_FILES), files,
|
|
|
|
this->Optional, this->FilePermissions.c_str(), no_dir_permissions,
|
|
|
|
this->Rename.c_str(), 0, indent);
|
2006-02-20 02:47:13 +03:00
|
|
|
}
|
2014-02-22 01:47:34 +04:00
|
|
|
|
|
|
|
void cmInstallFilesGenerator::GenerateScriptActions(std::ostream& os,
|
|
|
|
Indent const& indent)
|
|
|
|
{
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->ActionsPerConfig) {
|
2014-02-22 01:47:34 +04:00
|
|
|
this->cmInstallGenerator::GenerateScriptActions(os, indent);
|
2016-05-16 17:34:04 +03:00
|
|
|
} else {
|
2015-09-23 20:40:27 +03:00
|
|
|
this->AddFilesInstallRule(os, "", indent, this->Files);
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2014-02-22 01:47:34 +04:00
|
|
|
}
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
void cmInstallFilesGenerator::GenerateScriptForConfig(
|
|
|
|
std::ostream& os, const std::string& config, Indent const& indent)
|
2014-02-22 01:47:34 +04:00
|
|
|
{
|
|
|
|
std::vector<std::string> files;
|
2014-05-23 22:59:11 +04:00
|
|
|
cmGeneratorExpression ge;
|
2016-05-16 17:34:04 +03:00
|
|
|
for (std::vector<std::string>::const_iterator i = this->Files.begin();
|
|
|
|
i != this->Files.end(); ++i) {
|
2014-02-22 01:47:34 +04:00
|
|
|
cmsys::auto_ptr<cmCompiledGeneratorExpression> cge = ge.Parse(*i);
|
2016-05-16 17:34:04 +03:00
|
|
|
cmSystemTools::ExpandListArgument(
|
|
|
|
cge->Evaluate(this->LocalGenerator, config), files);
|
|
|
|
}
|
2015-09-23 20:40:27 +03:00
|
|
|
this->AddFilesInstallRule(os, config, indent, files);
|
2014-02-22 01:47:34 +04:00
|
|
|
}
|