2009-09-28 15:43:28 +00:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2006-02-19 23:47:13 +00:00
|
|
|
|
2009-09-28 15:43:28 +00:00
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
2006-02-19 23:47:13 +00:00
|
|
|
|
2009-09-28 15:43:28 +00: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 23:47:13 +00:00
|
|
|
#include "cmInstallFilesGenerator.h"
|
|
|
|
|
2014-02-21 21:47:34 +00:00
|
|
|
#include "cmGeneratorExpression.h"
|
2014-05-23 18:59:11 +00:00
|
|
|
#include "cmMakefile.h"
|
2014-02-21 21:47:34 +00:00
|
|
|
#include "cmSystemTools.h"
|
2015-08-01 07:01:03 +00:00
|
|
|
#include "cmLocalGenerator.h"
|
2014-02-21 21:47:34 +00:00
|
|
|
|
2006-02-19 23:47:13 +00:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
cmInstallFilesGenerator
|
2015-08-01 07:01:03 +00:00
|
|
|
::cmInstallFilesGenerator(std::vector<std::string> const& files,
|
2006-03-03 23:44:32 +00:00
|
|
|
const char* dest, bool programs,
|
2006-08-17 18:48:54 +00:00
|
|
|
const char* file_permissions,
|
2006-05-05 18:57:19 +00:00
|
|
|
std::vector<std::string> const& configurations,
|
2006-03-30 18:33:48 +00:00
|
|
|
const char* component,
|
2014-06-24 14:45:07 +00:00
|
|
|
MessageLevel message,
|
2006-10-05 15:31:57 +00:00
|
|
|
const char* rename,
|
|
|
|
bool optional):
|
2014-06-24 14:45:07 +00:00
|
|
|
cmInstallGenerator(dest, configurations, component, message),
|
2015-08-01 07:01:03 +00:00
|
|
|
LocalGenerator(0),
|
2015-06-07 07:57:33 +00:00
|
|
|
Files(files),
|
2007-07-02 18:56:57 +00:00
|
|
|
FilePermissions(file_permissions),
|
2015-06-07 07:57:33 +00:00
|
|
|
Rename(rename),
|
|
|
|
Programs(programs),
|
|
|
|
Optional(optional)
|
2006-02-19 23:47:13 +00:00
|
|
|
{
|
2014-02-21 21:47:34 +00:00
|
|
|
// We need per-config actions if any files have generator expressions.
|
|
|
|
for(std::vector<std::string>::const_iterator i = files.begin();
|
|
|
|
!this->ActionsPerConfig && i != files.end(); ++i)
|
|
|
|
{
|
|
|
|
if(cmGeneratorExpression::Find(*i) != std::string::npos)
|
|
|
|
{
|
|
|
|
this->ActionsPerConfig = true;
|
|
|
|
}
|
|
|
|
}
|
2006-02-19 23:47:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
cmInstallFilesGenerator
|
|
|
|
::~cmInstallFilesGenerator()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2015-08-01 07:01:03 +00:00
|
|
|
void cmInstallFilesGenerator::Compute(cmLocalGenerator* lg)
|
|
|
|
{
|
|
|
|
this->LocalGenerator = lg;
|
|
|
|
}
|
|
|
|
|
2006-02-19 23:47:13 +00:00
|
|
|
//----------------------------------------------------------------------------
|
2014-02-21 21:47:34 +00:00
|
|
|
void cmInstallFilesGenerator::AddFilesInstallRule(
|
|
|
|
std::ostream& os, Indent const& indent,
|
|
|
|
std::vector<std::string> const& files)
|
2006-02-19 23:47:13 +00:00
|
|
|
{
|
|
|
|
// Write code to install the files.
|
2007-06-28 20:11:18 +00:00
|
|
|
const char* no_dir_permissions = 0;
|
2008-01-28 13:38:36 +00:00
|
|
|
this->AddInstallRule(os,
|
2015-02-11 16:48:13 +00:00
|
|
|
this->Destination,
|
2007-06-28 20:11:18 +00:00
|
|
|
(this->Programs
|
2012-02-27 16:26:38 +00:00
|
|
|
? cmInstallType_PROGRAMS
|
|
|
|
: cmInstallType_FILES),
|
2014-02-21 21:47:34 +00:00
|
|
|
files,
|
2009-04-27 17:20:57 +00:00
|
|
|
this->Optional,
|
2007-06-28 20:11:18 +00:00
|
|
|
this->FilePermissions.c_str(), no_dir_permissions,
|
2007-07-02 18:56:57 +00:00
|
|
|
this->Rename.c_str(), 0, indent);
|
2006-02-19 23:47:13 +00:00
|
|
|
}
|
2014-02-21 21:47:34 +00:00
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void cmInstallFilesGenerator::GenerateScriptActions(std::ostream& os,
|
|
|
|
Indent const& indent)
|
|
|
|
{
|
|
|
|
if(this->ActionsPerConfig)
|
|
|
|
{
|
|
|
|
this->cmInstallGenerator::GenerateScriptActions(os, indent);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
this->AddFilesInstallRule(os, indent, this->Files);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void cmInstallFilesGenerator::GenerateScriptForConfig(std::ostream& os,
|
2014-02-10 03:48:34 +00:00
|
|
|
const std::string& config,
|
|
|
|
Indent const& indent)
|
2014-02-21 21:47:34 +00:00
|
|
|
{
|
|
|
|
std::vector<std::string> files;
|
2014-05-23 18:59:11 +00:00
|
|
|
cmGeneratorExpression ge;
|
2014-02-21 21:47:34 +00:00
|
|
|
for(std::vector<std::string>::const_iterator i = this->Files.begin();
|
|
|
|
i != this->Files.end(); ++i)
|
|
|
|
{
|
|
|
|
cmsys::auto_ptr<cmCompiledGeneratorExpression> cge = ge.Parse(*i);
|
2015-08-01 07:01:03 +00:00
|
|
|
cmSystemTools::ExpandListArgument(cge->Evaluate(
|
|
|
|
this->LocalGenerator->GetMakefile(), config), files);
|
2014-02-21 21:47:34 +00:00
|
|
|
}
|
|
|
|
this->AddFilesInstallRule(os, indent, files);
|
|
|
|
}
|