2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2005-03-18 18:39:21 +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.
|
2005-03-18 18:39:21 +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.
|
|
|
|
============================================================================*/
|
2005-03-18 18:39:21 +03:00
|
|
|
#include "cmAddSubDirectoryCommand.h"
|
|
|
|
|
|
|
|
// cmAddSubDirectoryCommand
|
2006-05-10 21:50:44 +04:00
|
|
|
bool cmAddSubDirectoryCommand::InitialPass
|
2008-01-23 18:28:26 +03:00
|
|
|
(std::vector<std::string> const& args, cmExecutionStatus &)
|
2005-03-18 18:39:21 +03:00
|
|
|
{
|
|
|
|
if(args.size() < 1 )
|
|
|
|
{
|
|
|
|
this->SetError("called with incorrect number of arguments");
|
|
|
|
return false;
|
|
|
|
}
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2005-03-18 18:39:21 +03:00
|
|
|
// store the binpath
|
2005-09-12 21:46:16 +04:00
|
|
|
std::string srcArg = args[0];
|
|
|
|
std::string binArg;
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2007-03-12 17:26:59 +03:00
|
|
|
bool excludeFromAll = false;
|
2005-03-18 18:39:21 +03:00
|
|
|
|
|
|
|
// process the rest of the arguments looking for optional args
|
|
|
|
std::vector<std::string>::const_iterator i = args.begin();
|
|
|
|
++i;
|
|
|
|
for(;i != args.end(); ++i)
|
|
|
|
{
|
|
|
|
if(*i == "EXCLUDE_FROM_ALL")
|
|
|
|
{
|
2007-03-12 17:26:59 +03:00
|
|
|
excludeFromAll = true;
|
2005-03-18 18:39:21 +03:00
|
|
|
continue;
|
|
|
|
}
|
2005-09-12 21:46:16 +04:00
|
|
|
else if (!binArg.size())
|
2005-03-18 18:39:21 +03:00
|
|
|
{
|
2005-09-12 21:46:16 +04:00
|
|
|
binArg = *i;
|
2005-03-18 18:39:21 +03:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
this->SetError("called with incorrect number of arguments");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-09-01 00:40:38 +04:00
|
|
|
// Compute the full path to the specified source directory.
|
|
|
|
// Interpret a relative path with respect to the current source directory.
|
|
|
|
std::string srcPath;
|
|
|
|
if(cmSystemTools::FileIsFullPath(srcArg.c_str()))
|
2005-03-18 18:39:21 +03:00
|
|
|
{
|
|
|
|
srcPath = srcArg;
|
|
|
|
}
|
2006-09-01 00:40:38 +04:00
|
|
|
else
|
|
|
|
{
|
|
|
|
srcPath = this->Makefile->GetCurrentDirectory();
|
|
|
|
srcPath += "/";
|
|
|
|
srcPath += srcArg;
|
|
|
|
}
|
|
|
|
if(!cmSystemTools::FileIsDirectory(srcPath.c_str()))
|
|
|
|
{
|
|
|
|
std::string error = "given source \"";
|
|
|
|
error += srcArg;
|
|
|
|
error += "\" which is not an existing directory.";
|
|
|
|
this->SetError(error.c_str());
|
|
|
|
return false;
|
|
|
|
}
|
2006-06-05 22:38:16 +04:00
|
|
|
srcPath = cmSystemTools::CollapseFullPath(srcPath.c_str());
|
2006-09-01 00:40:38 +04:00
|
|
|
|
|
|
|
// Compute the full path to the binary directory.
|
|
|
|
std::string binPath;
|
|
|
|
if(binArg.empty())
|
2005-03-18 18:39:21 +03:00
|
|
|
{
|
2006-09-01 00:40:38 +04:00
|
|
|
// No binary directory was specified. If the source directory is
|
|
|
|
// not a subdirectory of the current directory then it is an
|
|
|
|
// error.
|
2013-03-12 19:47:49 +04:00
|
|
|
if(!cmSystemTools::IsSubDirectory(srcPath.c_str(),
|
2006-09-01 00:40:38 +04:00
|
|
|
this->Makefile->GetCurrentDirectory()))
|
2005-09-12 21:46:16 +04:00
|
|
|
{
|
2006-09-01 00:40:38 +04:00
|
|
|
cmOStringStream e;
|
|
|
|
e << "not given a binary directory but the given source directory "
|
|
|
|
<< "\"" << srcPath << "\" is not a subdirectory of \""
|
|
|
|
<< this->Makefile->GetCurrentDirectory() << "\". "
|
|
|
|
<< "When specifying an out-of-tree source a binary directory "
|
|
|
|
<< "must be explicitly specified.";
|
|
|
|
this->SetError(e.str().c_str());
|
|
|
|
return false;
|
2005-09-12 21:46:16 +04:00
|
|
|
}
|
2006-09-01 00:40:38 +04:00
|
|
|
|
|
|
|
// Remove the CurrentDirectory from the srcPath and replace it
|
|
|
|
// with the CurrentOutputDirectory.
|
2013-03-12 19:47:49 +04:00
|
|
|
const char* src = this->Makefile->GetCurrentDirectory();
|
|
|
|
const char* bin = this->Makefile->GetCurrentOutputDirectory();
|
|
|
|
size_t srcLen = strlen(src);
|
|
|
|
size_t binLen = strlen(bin);
|
|
|
|
if(srcLen > 0 && src[srcLen-1] == '/')
|
|
|
|
{ --srcLen; }
|
|
|
|
if(binLen > 0 && bin[binLen-1] == '/')
|
|
|
|
{ --binLen; }
|
|
|
|
binPath = std::string(bin, binLen) + srcPath.substr(srcLen);
|
2005-09-12 21:46:16 +04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2006-09-01 00:40:38 +04:00
|
|
|
// Use the binary directory specified.
|
|
|
|
// Interpret a relative path with respect to the current binary directory.
|
|
|
|
if(cmSystemTools::FileIsFullPath(binArg.c_str()))
|
2005-09-12 21:46:16 +04:00
|
|
|
{
|
2006-09-01 00:40:38 +04:00
|
|
|
binPath = binArg;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
binPath = this->Makefile->GetCurrentOutputDirectory();
|
|
|
|
binPath += "/";
|
|
|
|
binPath += binArg;
|
2005-09-12 21:46:16 +04:00
|
|
|
}
|
2005-03-18 18:39:21 +03:00
|
|
|
}
|
2006-09-01 00:40:38 +04:00
|
|
|
binPath = cmSystemTools::CollapseFullPath(binPath.c_str());
|
|
|
|
|
|
|
|
// Add the subdirectory using the computed full paths.
|
2006-03-15 19:02:08 +03:00
|
|
|
this->Makefile->AddSubDirectory(srcPath.c_str(), binPath.c_str(),
|
2007-03-12 17:26:59 +03:00
|
|
|
excludeFromAll, false, true);
|
2005-03-18 18:39:21 +03:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|