CMake/Source/cmInstallFilesCommand.cxx

155 lines
4.4 KiB
C++
Raw Normal View History

2001-05-23 19:31:43 +04:00
/*=========================================================================
Program: CMake - Cross-Platform Makefile Generator
2001-05-23 19:31:43 +04:00
Module: $RCSfile$
Language: C++
Date: $Date$
Version: $Revision$
Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
2001-05-23 19:31:43 +04:00
2002-01-21 23:30:43 +03:00
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notices for more information.
2001-05-23 19:31:43 +04:00
=========================================================================*/
#include "cmInstallFilesCommand.h"
// cmExecutableCommand
2006-05-11 23:50:11 +04:00
bool cmInstallFilesCommand
::InitialPass(std::vector<std::string> const& argsIn)
2001-05-23 19:31:43 +04:00
{
if(argsIn.size() < 2)
2001-05-23 19:31:43 +04:00
{
this->SetError("called with incorrect number of arguments");
return false;
}
std::vector<std::string> args;
2006-03-15 19:02:08 +03:00
this->Makefile->ExpandSourceListArguments(argsIn, args, 2);
2001-05-23 19:31:43 +04:00
// Create an INSTALL_FILES target specifically for this path.
2006-03-15 19:02:08 +03:00
this->TargetName = "INSTALL_FILES_"+args[0];
cmTarget& target = this->Makefile->GetTargets()[this->TargetName];
target.SetInAll(false);
2006-03-15 19:02:08 +03:00
target.SetType(cmTarget::INSTALL_FILES, this->TargetName.c_str());
target.SetInstallPath(args[0].c_str());
if((args.size() > 1) && (args[1] == "FILES"))
2001-05-23 19:31:43 +04:00
{
2006-03-15 19:02:08 +03:00
this->IsFilesForm = true;
for(std::vector<std::string>::const_iterator s = args.begin()+2;
s != args.end(); ++s)
{
// Find the source location for each file listed.
std::string f = this->FindInstallSource(s->c_str());
target.GetSourceLists().push_back(f);
}
}
else
{
2006-03-15 19:02:08 +03:00
this->IsFilesForm = false;
std::vector<std::string>::const_iterator s = args.begin();
for (++s;s != args.end(); ++s)
{
2006-03-15 19:02:08 +03:00
this->FinalArgs.push_back(*s);
}
2001-05-23 19:31:43 +04:00
}
return true;
}
void cmInstallFilesCommand::FinalPass()
{
// No final pass for "FILES" form of arguments.
2006-03-15 19:02:08 +03:00
if(this->IsFilesForm)
{
return;
}
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];
std::vector<std::string>& targetSourceLists =
2006-03-15 19:02:08 +03:00
this->Makefile->GetTargets()[this->TargetName].GetSourceLists();
2001-06-21 20:01:18 +04:00
// two different options
2006-03-15 19:02:08 +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;
// for each argument, get the files
2006-03-15 19:02:08 +03:00
for (;s != this->FinalArgs.end(); ++s)
2001-05-23 19:31:43 +04:00
{
// replace any variables
std::string temps = *s;
2002-07-17 23:57:51 +04:00
if (cmSystemTools::GetFilenamePath(temps).size() > 0)
{
testf = cmSystemTools::GetFilenamePath(temps) + "/" +
cmSystemTools::GetFilenameWithoutLastExtension(temps) + ext;
}
2002-07-17 23:57:51 +04:00
else
{
testf = cmSystemTools::GetFilenameWithoutLastExtension(temps) + ext;
}
// add to the result
targetSourceLists.push_back(this->FindInstallSource(testf.c_str()));
2001-06-21 20:01:18 +04:00
}
}
else // reg exp list
{
std::vector<std::string> files;
2006-03-15 19:02:08 +03:00
std::string regex = this->FinalArgs[0].c_str();
cmSystemTools::Glob(this->Makefile->GetCurrentDirectory(),
regex.c_str(), files);
2001-06-21 20:01:18 +04:00
std::vector<std::string>::iterator s = files.begin();
// for each argument, get the files
for (;s != files.end(); ++s)
{
targetSourceLists.push_back(this->FindInstallSource(s->c_str()));
2001-05-23 19:31:43 +04:00
}
}
}
2001-06-21 20:01: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
{
if(cmSystemTools::FileIsFullPath(name))
{
// This is a full path.
return name;
}
// This is a relative path.
2006-03-15 19:02:08 +03:00
std::string tb = this->Makefile->GetCurrentOutputDirectory();
tb += "/";
tb += name;
2006-03-15 19:02:08 +03:00
std::string ts = this->Makefile->GetCurrentDirectory();
ts += "/";
ts += name;
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;
}
}