2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2004-04-24 00:20:36 +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.
|
2004-04-24 00:20:36 +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.
|
|
|
|
============================================================================*/
|
2004-04-24 00:20:36 +04:00
|
|
|
#include "cmGetDirectoryPropertyCommand.h"
|
|
|
|
|
|
|
|
#include "cmake.h"
|
|
|
|
|
|
|
|
// cmGetDirectoryPropertyCommand
|
2008-01-23 18:28:26 +03:00
|
|
|
bool cmGetDirectoryPropertyCommand
|
|
|
|
::InitialPass(std::vector<std::string> const& args, cmExecutionStatus &)
|
2004-04-24 00:20:36 +04:00
|
|
|
{
|
|
|
|
if(args.size() < 2 )
|
|
|
|
{
|
|
|
|
this->SetError("called with incorrect number of arguments");
|
|
|
|
return false;
|
|
|
|
}
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2005-09-13 18:39:42 +04:00
|
|
|
std::vector<std::string>::const_iterator i = args.begin();
|
|
|
|
std::string variable = *i;
|
|
|
|
++i;
|
2004-04-24 00:20:36 +04:00
|
|
|
std::string output = "";
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2005-09-13 18:39:42 +04:00
|
|
|
// get the directory argument if there is one
|
2006-03-15 19:02:08 +03:00
|
|
|
cmMakefile *dir = this->Makefile;
|
2005-09-13 18:39:42 +04:00
|
|
|
if (*i == "DIRECTORY")
|
|
|
|
{
|
|
|
|
++i;
|
|
|
|
if (i == args.end())
|
|
|
|
{
|
|
|
|
this->SetError
|
|
|
|
("DIRECTORY argument provided without subsequent arguments");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
std::string sd = *i;
|
|
|
|
// make sure the start dir is a full path
|
|
|
|
if (!cmSystemTools::FileIsFullPath(sd.c_str()))
|
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
sd = this->Makefile->GetStartDirectory();
|
2005-09-13 18:39:42 +04:00
|
|
|
sd += "/";
|
|
|
|
sd += *i;
|
|
|
|
}
|
2006-10-16 23:18:03 +04:00
|
|
|
|
|
|
|
// The local generators are associated with collapsed paths.
|
|
|
|
sd = cmSystemTools::CollapseFullPath(sd.c_str());
|
|
|
|
|
2005-09-13 18:39:42 +04:00
|
|
|
// lookup the makefile from the directory name
|
2012-08-13 21:42:58 +04:00
|
|
|
cmLocalGenerator *lg =
|
2006-03-15 19:02:08 +03:00
|
|
|
this->Makefile->GetLocalGenerator()->GetGlobalGenerator()->
|
2014-03-11 03:04:11 +04:00
|
|
|
FindLocalGenerator(sd);
|
2005-09-13 18:39:42 +04:00
|
|
|
if (!lg)
|
|
|
|
{
|
|
|
|
this->SetError
|
2006-05-10 23:56:00 +04:00
|
|
|
("DIRECTORY argument provided but requested directory not found. "
|
|
|
|
"This could be because the directory argument was invalid or, "
|
|
|
|
"it is valid but has not been processed yet.");
|
2005-09-13 18:39:42 +04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
dir = lg->GetMakefile();
|
|
|
|
++i;
|
|
|
|
}
|
2004-04-24 00:20:36 +04:00
|
|
|
|
2005-09-13 18:39:42 +04:00
|
|
|
// OK, now we have the directory to process, we just get the requested
|
|
|
|
// information out of it
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2007-07-10 21:52:41 +04:00
|
|
|
if ( *i == "DEFINITION" )
|
2005-09-13 18:39:42 +04:00
|
|
|
{
|
|
|
|
++i;
|
|
|
|
if (i == args.end())
|
|
|
|
{
|
2006-05-10 23:56:00 +04:00
|
|
|
this->SetError("A request for a variable definition was made without "
|
|
|
|
"providing the name of the variable to get.");
|
2005-09-13 18:39:42 +04:00
|
|
|
return false;
|
|
|
|
}
|
2014-03-11 03:04:11 +04:00
|
|
|
output = dir->GetSafeDefinition(*i);
|
|
|
|
this->Makefile->AddDefinition(variable, output.c_str());
|
2007-07-12 18:17:37 +04:00
|
|
|
return true;
|
2005-09-13 18:39:42 +04:00
|
|
|
}
|
2007-07-10 21:52:41 +04:00
|
|
|
|
2014-03-11 03:04:11 +04:00
|
|
|
const char *prop = dir->GetProperty(*i);
|
2007-07-10 21:52:41 +04:00
|
|
|
if (prop)
|
2004-04-24 00:20:36 +04:00
|
|
|
{
|
2014-03-11 03:04:11 +04:00
|
|
|
this->Makefile->AddDefinition(variable, prop);
|
2005-04-05 00:43:44 +04:00
|
|
|
return true;
|
2004-04-24 00:20:36 +04:00
|
|
|
}
|
2014-03-11 03:04:11 +04:00
|
|
|
this->Makefile->AddDefinition(variable, "");
|
2004-04-24 00:20:36 +04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|