2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2001-05-23 19:31:43 +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.
|
2001-05-23 19:31:43 +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.
|
|
|
|
============================================================================*/
|
2001-05-23 19:31:43 +04:00
|
|
|
#include "cmInstallFilesCommand.h"
|
|
|
|
|
2007-05-23 23:40:12 +04:00
|
|
|
#include "cmInstallFilesGenerator.h"
|
|
|
|
|
2001-05-23 19:31:43 +04:00
|
|
|
// cmExecutableCommand
|
2016-05-16 17:34:04 +03:00
|
|
|
bool cmInstallFilesCommand::InitialPass(std::vector<std::string> const& args,
|
|
|
|
cmExecutionStatus&)
|
2001-05-23 19:31:43 +04:00
|
|
|
{
|
2016-05-16 17:34:04 +03:00
|
|
|
if (args.size() < 2) {
|
2001-05-23 19:31:43 +04:00
|
|
|
this->SetError("called with incorrect number of arguments");
|
|
|
|
return false;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2006-08-31 18:47:00 +04:00
|
|
|
|
|
|
|
// Enable the install target.
|
2015-05-03 12:10:30 +03:00
|
|
|
this->Makefile->GetGlobalGenerator()->EnableInstallTarget();
|
2006-08-31 18:47:00 +04:00
|
|
|
|
2007-05-23 23:40:12 +04:00
|
|
|
this->Destination = args[0];
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
if ((args.size() > 1) && (args[1] == "FILES")) {
|
2012-05-13 17:34:30 +04:00
|
|
|
this->IsFilesForm = true;
|
2016-05-16 17:34:04 +03:00
|
|
|
for (std::vector<std::string>::const_iterator s = args.begin() + 2;
|
|
|
|
s != args.end(); ++s) {
|
2002-09-17 18:56:18 +04:00
|
|
|
// Find the source location for each file listed.
|
|
|
|
std::string f = this->FindInstallSource(s->c_str());
|
2007-05-23 23:40:12 +04:00
|
|
|
this->Files.push_back(f);
|
2002-09-17 18:56:18 +04:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
this->CreateInstallGenerator();
|
|
|
|
} else {
|
2006-03-15 19:02:08 +03:00
|
|
|
this->IsFilesForm = false;
|
2016-05-16 17:34:04 +03:00
|
|
|
this->FinalArgs.insert(this->FinalArgs.end(), args.begin() + 1,
|
|
|
|
args.end());
|
|
|
|
}
|
2012-05-13 17:34:30 +04:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
this->Makefile->GetGlobalGenerator()->AddInstallComponent(
|
|
|
|
this->Makefile->GetSafeDefinition("CMAKE_INSTALL_DEFAULT_COMPONENT_NAME"));
|
2008-07-08 19:52:25 +04:00
|
|
|
|
2001-05-23 19:31:43 +04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-05-13 17:34:30 +04:00
|
|
|
void cmInstallFilesCommand::FinalPass()
|
2001-05-23 19:31:43 +04:00
|
|
|
{
|
2002-09-17 18:56:18 +04:00
|
|
|
// No final pass for "FILES" form of arguments.
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->IsFilesForm) {
|
2002-09-17 18:56:18 +04:00
|
|
|
return;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2012-05-13 17:34:30 +04:00
|
|
|
|
2001-05-23 19:31:43 +04:00
|
|
|
std::string testf;
|
2006-03-15 19:02:08 +03:00
|
|
|
std::string ext = this->FinalArgs[0];
|
2012-05-13 17:34:30 +04:00
|
|
|
|
2001-06-21 20:01:18 +04:00
|
|
|
// two different options
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->FinalArgs.size() > 1) {
|
2001-05-23 19:31:43 +04:00
|
|
|
// now put the files into the list
|
2006-03-15 19:02:08 +03:00
|
|
|
std::vector<std::string>::iterator s = this->FinalArgs.begin();
|
2001-05-23 19:31:43 +04:00
|
|
|
++s;
|
2012-05-13 17:34:30 +04:00
|
|
|
// for each argument, get the files
|
2016-05-16 17:34:04 +03:00
|
|
|
for (; s != this->FinalArgs.end(); ++s) {
|
2001-05-23 19:31:43 +04:00
|
|
|
// replace any variables
|
|
|
|
std::string temps = *s;
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!cmSystemTools::GetFilenamePath(temps).empty()) {
|
|
|
|
testf = cmSystemTools::GetFilenamePath(temps) + "/" +
|
|
|
|
cmSystemTools::GetFilenameWithoutLastExtension(temps) + ext;
|
|
|
|
} else {
|
|
|
|
testf = cmSystemTools::GetFilenameWithoutLastExtension(temps) + ext;
|
|
|
|
}
|
2012-05-13 17:34:30 +04:00
|
|
|
|
2002-06-27 23:57:09 +04:00
|
|
|
// add to the result
|
2007-05-23 23:40:12 +04:00
|
|
|
this->Files.push_back(this->FindInstallSource(testf.c_str()));
|
2001-06-21 20:01:18 +04:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
} else // reg exp list
|
|
|
|
{
|
2001-06-21 20:01:18 +04:00
|
|
|
std::vector<std::string> files;
|
2014-03-11 03:04:11 +04:00
|
|
|
std::string regex = this->FinalArgs[0];
|
2016-05-16 17:34:04 +03:00
|
|
|
cmSystemTools::Glob(this->Makefile->GetCurrentSourceDirectory(), regex,
|
|
|
|
files);
|
2012-05-13 17:34:30 +04:00
|
|
|
|
2001-06-21 20:01:18 +04:00
|
|
|
std::vector<std::string>::iterator s = files.begin();
|
2012-05-13 17:34:30 +04:00
|
|
|
// for each argument, get the files
|
2016-05-16 17:34:04 +03:00
|
|
|
for (; s != files.end(); ++s) {
|
2007-05-23 23:40:12 +04:00
|
|
|
this->Files.push_back(this->FindInstallSource(s->c_str()));
|
2001-05-23 19:31:43 +04:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2007-05-23 23:40:12 +04:00
|
|
|
|
2007-05-25 19:08:52 +04:00
|
|
|
this->CreateInstallGenerator();
|
|
|
|
}
|
|
|
|
|
|
|
|
void cmInstallFilesCommand::CreateInstallGenerator() const
|
|
|
|
{
|
2007-05-25 19:01:20 +04:00
|
|
|
// Construct the destination. This command always installs under
|
2008-01-28 16:38:36 +03:00
|
|
|
// the prefix. We skip the leading slash given by the user.
|
|
|
|
std::string destination = this->Destination.substr(1);
|
2007-05-25 19:01:20 +04:00
|
|
|
cmSystemTools::ConvertToUnixSlashes(destination);
|
2016-05-16 17:34:04 +03:00
|
|
|
if (destination.empty()) {
|
2009-02-04 18:34:10 +03:00
|
|
|
destination = ".";
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2007-05-25 19:01:20 +04:00
|
|
|
|
2007-05-23 23:40:12 +04:00
|
|
|
// Use a file install generator.
|
|
|
|
const char* no_permissions = "";
|
|
|
|
const char* no_rename = "";
|
2016-02-01 13:01:39 +03:00
|
|
|
bool no_exclude_from_all = false;
|
2016-05-16 17:34:04 +03:00
|
|
|
std::string no_component =
|
|
|
|
this->Makefile->GetSafeDefinition("CMAKE_INSTALL_DEFAULT_COMPONENT_NAME");
|
2007-05-23 23:40:12 +04:00
|
|
|
std::vector<std::string> no_configurations;
|
2014-06-24 18:45:07 +04:00
|
|
|
cmInstallGenerator::MessageLevel message =
|
2014-06-24 19:18:43 +04:00
|
|
|
cmInstallGenerator::SelectMessageLevel(this->Makefile);
|
2016-05-16 17:34:04 +03:00
|
|
|
this->Makefile->AddInstallGenerator(new cmInstallFilesGenerator(
|
|
|
|
this->Files, destination.c_str(), false, no_permissions, no_configurations,
|
|
|
|
no_component.c_str(), message, no_exclude_from_all, no_rename));
|
2001-05-23 19:31:43 +04:00
|
|
|
}
|
2001-06-21 20:01:18 +04:00
|
|
|
|
2002-09-17 18:56:18 +04:00
|
|
|
/**
|
|
|
|
* Find a file in the build or source tree for installation given a
|
|
|
|
* relative path from the CMakeLists.txt file. This will favor files
|
|
|
|
* present in the build tree. If a full path is given, it is just
|
|
|
|
* returned.
|
|
|
|
*/
|
|
|
|
std::string cmInstallFilesCommand::FindInstallSource(const char* name) const
|
|
|
|
{
|
2016-05-16 17:34:04 +03:00
|
|
|
if (cmSystemTools::FileIsFullPath(name) ||
|
|
|
|
cmGeneratorExpression::Find(name) == 0) {
|
2002-09-17 18:56:18 +04:00
|
|
|
// This is a full path.
|
|
|
|
return name;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2012-05-13 17:34:30 +04:00
|
|
|
|
2002-09-17 18:56:18 +04:00
|
|
|
// This is a relative path.
|
2015-04-16 22:33:09 +03:00
|
|
|
std::string tb = this->Makefile->GetCurrentBinaryDirectory();
|
2002-09-17 18:56:18 +04:00
|
|
|
tb += "/";
|
|
|
|
tb += name;
|
2015-04-16 22:17:41 +03:00
|
|
|
std::string ts = this->Makefile->GetCurrentSourceDirectory();
|
2002-09-17 18:56:18 +04:00
|
|
|
ts += "/";
|
|
|
|
ts += name;
|
2012-05-13 17:34:30 +04:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
if (cmSystemTools::FileExists(tb.c_str())) {
|
2002-09-17 18:56:18 +04:00
|
|
|
// The file exists in the binary tree. Use it.
|
|
|
|
return tb;
|
2016-05-16 17:34:04 +03:00
|
|
|
} else if (cmSystemTools::FileExists(ts.c_str())) {
|
2002-09-17 18:56:18 +04:00
|
|
|
// The file exists in the source tree. Use it.
|
|
|
|
return ts;
|
2016-05-16 17:34:04 +03:00
|
|
|
} else {
|
2002-09-17 18:56:18 +04:00
|
|
|
// The file doesn't exist. Assume it will be present in the
|
|
|
|
// binary tree when the install occurs.
|
|
|
|
return tb;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2002-09-17 18:56:18 +04:00
|
|
|
}
|