2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2001-07-31 19:29:21 +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-07-31 19:29:21 +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-07-31 19:29:21 +04:00
|
|
|
#include "cmInstallProgramsCommand.h"
|
2008-02-16 21:05:03 +03:00
|
|
|
#include "cmInstallFilesGenerator.h"
|
2001-07-31 19:29:21 +04:00
|
|
|
// cmExecutableCommand
|
2006-05-11 23:50:11 +04:00
|
|
|
bool cmInstallProgramsCommand
|
2008-01-23 18:28:26 +03:00
|
|
|
::InitialPass(std::vector<std::string> const& args, cmExecutionStatus &)
|
2001-07-31 19:29:21 +04:00
|
|
|
{
|
2002-12-12 02:13:33 +03:00
|
|
|
if(args.size() < 2)
|
2001-07-31 19:29:21 +04:00
|
|
|
{
|
|
|
|
this->SetError("called with incorrect number of arguments");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2006-08-31 18:47:00 +04:00
|
|
|
// Enable the install target.
|
|
|
|
this->Makefile->GetLocalGenerator()
|
|
|
|
->GetGlobalGenerator()->EnableInstallTarget();
|
|
|
|
|
2007-05-23 23:40:12 +04:00
|
|
|
this->Destination = args[0];
|
2001-08-15 01:18:52 +04:00
|
|
|
|
2001-09-20 23:08:30 +04:00
|
|
|
std::vector<std::string>::const_iterator s = args.begin();
|
2001-08-15 01:18:52 +04:00
|
|
|
for (++s;s != args.end(); ++s)
|
2001-07-31 19:29:21 +04:00
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
this->FinalArgs.push_back(*s);
|
2012-05-13 17:34:30 +04:00
|
|
|
}
|
|
|
|
|
2008-07-08 19:52:25 +04:00
|
|
|
this->Makefile->GetLocalGenerator()->GetGlobalGenerator()
|
2012-05-13 17:44:37 +04:00
|
|
|
->AddInstallComponent(this->Makefile->GetSafeDefinition(
|
|
|
|
"CMAKE_INSTALL_DEFAULT_COMPONENT_NAME"));
|
2008-07-08 19:52:25 +04:00
|
|
|
|
2001-07-31 19:29:21 +04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-05-13 17:34:30 +04:00
|
|
|
void cmInstallProgramsCommand::FinalPass()
|
2001-07-31 19:29:21 +04:00
|
|
|
{
|
2005-03-01 20:13:38 +03:00
|
|
|
bool files_mode = false;
|
2006-03-15 19:02:08 +03:00
|
|
|
if(!this->FinalArgs.empty() && this->FinalArgs[0] == "FILES")
|
2005-03-01 20:13:38 +03:00
|
|
|
{
|
|
|
|
files_mode = true;
|
|
|
|
}
|
2012-05-13 17:34:30 +04:00
|
|
|
|
2001-07-31 19:29:21 +04:00
|
|
|
// two different options
|
2006-03-15 19:02:08 +03:00
|
|
|
if (this->FinalArgs.size() > 1 || files_mode)
|
2001-07-31 19:29:21 +04:00
|
|
|
{
|
2012-05-13 17:34:30 +04:00
|
|
|
// for each argument, get the programs
|
2006-03-15 19:02:08 +03:00
|
|
|
std::vector<std::string>::iterator s = this->FinalArgs.begin();
|
2005-03-01 20:13:38 +03:00
|
|
|
if(files_mode)
|
|
|
|
{
|
|
|
|
// Skip the FILES argument in files mode.
|
|
|
|
++s;
|
|
|
|
}
|
2006-03-15 19:02:08 +03:00
|
|
|
for(;s != this->FinalArgs.end(); ++s)
|
2001-07-31 19:29:21 +04:00
|
|
|
{
|
|
|
|
// add to the result
|
2007-05-23 23:40:12 +04:00
|
|
|
this->Files.push_back(this->FindInstallSource(s->c_str()));
|
2001-07-31 19:29:21 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else // reg exp list
|
|
|
|
{
|
|
|
|
std::vector<std::string> programs;
|
2006-03-15 19:02:08 +03:00
|
|
|
cmSystemTools::Glob(this->Makefile->GetCurrentDirectory(),
|
|
|
|
this->FinalArgs[0].c_str(), programs);
|
2012-05-13 17:34:30 +04:00
|
|
|
|
2001-07-31 19:29:21 +04:00
|
|
|
std::vector<std::string>::iterator s = programs.begin();
|
2012-05-13 17:34:30 +04:00
|
|
|
// for each argument, get the programs
|
2001-07-31 19:29:21 +04:00
|
|
|
for (;s != programs.end(); ++s)
|
|
|
|
{
|
2007-05-23 23:40:12 +04:00
|
|
|
this->Files.push_back(this->FindInstallSource(s->c_str()));
|
2001-07-31 19:29:21 +04:00
|
|
|
}
|
|
|
|
}
|
2007-05-23 23:40:12 +04:00
|
|
|
|
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);
|
2009-02-04 18:34:10 +03:00
|
|
|
if(destination.empty())
|
|
|
|
{
|
|
|
|
destination = ".";
|
|
|
|
}
|
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 = "";
|
2012-05-13 17:44:37 +04: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;
|
|
|
|
this->Makefile->AddInstallGenerator(
|
|
|
|
new cmInstallFilesGenerator(this->Files,
|
2007-05-25 19:01:20 +04:00
|
|
|
destination.c_str(), true,
|
2007-05-23 23:40:12 +04:00
|
|
|
no_permissions, no_configurations,
|
2012-05-13 17:44:37 +04:00
|
|
|
no_component.c_str(), no_rename));
|
2001-07-31 19:29:21 +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.
|
|
|
|
*/
|
2006-05-11 23:50:11 +04:00
|
|
|
std::string cmInstallProgramsCommand
|
|
|
|
::FindInstallSource(const char* name) const
|
2002-09-17 18:56:18 +04:00
|
|
|
{
|
|
|
|
if(cmSystemTools::FileIsFullPath(name))
|
|
|
|
{
|
|
|
|
// This is a full path.
|
|
|
|
return name;
|
|
|
|
}
|
2012-05-13 17:34:30 +04:00
|
|
|
|
2002-09-17 18:56:18 +04:00
|
|
|
// This is a relative path.
|
2006-03-15 19:02:08 +03:00
|
|
|
std::string tb = this->Makefile->GetCurrentOutputDirectory();
|
2002-09-17 18:56:18 +04:00
|
|
|
tb += "/";
|
|
|
|
tb += name;
|
2006-03-15 19:02:08 +03:00
|
|
|
std::string ts = this->Makefile->GetCurrentDirectory();
|
2002-09-17 18:56:18 +04:00
|
|
|
ts += "/";
|
|
|
|
ts += name;
|
2012-05-13 17:34:30 +04:00
|
|
|
|
2002-09-17 18:56:18 +04:00
|
|
|
if(cmSystemTools::FileExists(tb.c_str()))
|
|
|
|
{
|
|
|
|
// The file exists in the binary tree. Use it.
|
|
|
|
return tb;
|
|
|
|
}
|
|
|
|
else if(cmSystemTools::FileExists(ts.c_str()))
|
|
|
|
{
|
|
|
|
// The file exists in the source tree. Use it.
|
|
|
|
return ts;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// The file doesn't exist. Assume it will be present in the
|
|
|
|
// binary tree when the install occurs.
|
|
|
|
return tb;
|
|
|
|
}
|
|
|
|
}
|