2005-03-18 18:39:21 +03:00
|
|
|
/*=========================================================================
|
|
|
|
|
|
|
|
Program: CMake - Cross-Platform Makefile Generator
|
|
|
|
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.
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
=========================================================================*/
|
|
|
|
#include "cmAddSubDirectoryCommand.h"
|
|
|
|
|
|
|
|
// cmAddSubDirectoryCommand
|
2006-05-10 21:50:44 +04:00
|
|
|
bool cmAddSubDirectoryCommand::InitialPass
|
|
|
|
(std::vector<std::string> const& args)
|
2005-03-18 18:39:21 +03:00
|
|
|
{
|
|
|
|
if(args.size() < 1 )
|
|
|
|
{
|
|
|
|
this->SetError("called with incorrect number of arguments");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// store the binpath
|
2005-09-12 21:46:16 +04:00
|
|
|
std::string srcArg = args[0];
|
|
|
|
std::string binArg;
|
2005-03-18 18:39:21 +03:00
|
|
|
|
|
|
|
bool intoplevel = true;
|
|
|
|
|
|
|
|
// 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")
|
|
|
|
{
|
|
|
|
intoplevel = false;
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-09-12 21:46:16 +04:00
|
|
|
// check for relative arguments
|
|
|
|
std::string binPath = binArg;
|
2006-03-15 19:02:08 +03:00
|
|
|
std::string srcPath = std::string(this->Makefile->GetCurrentDirectory()) +
|
2005-03-18 18:39:21 +03:00
|
|
|
"/" + srcArg;
|
2005-09-12 21:46:16 +04:00
|
|
|
// if the path does not exist then the arg was relative
|
2005-03-18 18:39:21 +03:00
|
|
|
if (!cmSystemTools::FileIsDirectory(srcPath.c_str()))
|
|
|
|
{
|
|
|
|
srcPath = srcArg;
|
|
|
|
if (!cmSystemTools::FileIsDirectory(srcPath.c_str()))
|
|
|
|
{
|
|
|
|
std::string error = "Incorrect ADD_SUBDIRECTORY command. Directory: ";
|
|
|
|
error += srcArg + " does not exists.";
|
|
|
|
this->SetError(error.c_str());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-09-12 21:46:16 +04:00
|
|
|
// at this point srcPath has the full path to the source directory
|
|
|
|
// now we need to compute the binPath if it was not provided
|
2006-06-05 22:38:16 +04:00
|
|
|
srcPath = cmSystemTools::CollapseFullPath(srcPath.c_str());
|
2005-09-12 21:46:16 +04:00
|
|
|
|
|
|
|
// if the argument was provided then use it
|
|
|
|
if (binArg.size())
|
2005-03-18 18:39:21 +03:00
|
|
|
{
|
2005-09-12 21:46:16 +04:00
|
|
|
if (!cmSystemTools::FileIsFullPath(binPath.c_str()))
|
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
binPath = std::string(this->Makefile->GetCurrentOutputDirectory()) +
|
2005-09-12 21:46:16 +04:00
|
|
|
"/" + binArg.c_str();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// otherwise compute the binPath from the srcPath
|
|
|
|
else
|
|
|
|
{
|
2006-06-05 22:38:16 +04:00
|
|
|
// we try to remove the CurrentDirectory from the srcPath and
|
2005-09-12 21:46:16 +04:00
|
|
|
// replace it with the CurrentOutputDirectory. This may not really work
|
|
|
|
// because the source dir they provided may not be "in" the source
|
|
|
|
// tree. This is an error if this happens.
|
2006-06-05 22:38:16 +04:00
|
|
|
// try replacing the home dir with the home output dir
|
|
|
|
binPath = srcPath;
|
|
|
|
if(!cmSystemTools::FindLastString(binPath.c_str(),
|
|
|
|
this->Makefile->GetHomeDirectory()))
|
2005-09-12 21:46:16 +04:00
|
|
|
{
|
2006-06-05 22:38:16 +04:00
|
|
|
this->SetError("A full source directory was specified that is not "
|
|
|
|
"in the source tree but no binary directory was "
|
|
|
|
"specified. If you specify an out of tree source "
|
|
|
|
"directory then you must provide the binary "
|
|
|
|
"directory as well.");
|
|
|
|
return false;
|
2005-09-12 21:46:16 +04:00
|
|
|
}
|
2006-06-05 22:38:16 +04:00
|
|
|
cmSystemTools::ReplaceString(binPath,
|
|
|
|
this->Makefile->GetHomeDirectory(),
|
|
|
|
this->Makefile->GetHomeOutputDirectory());
|
2005-03-18 18:39:21 +03:00
|
|
|
}
|
|
|
|
|
2005-09-12 21:46:16 +04:00
|
|
|
// now we have all the arguments
|
2006-03-15 19:02:08 +03:00
|
|
|
this->Makefile->AddSubDirectory(srcPath.c_str(), binPath.c_str(),
|
2005-05-31 23:10:04 +04:00
|
|
|
intoplevel, false, true);
|
2005-03-18 18:39:21 +03:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|