2009-09-28 11:43:28 -04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2004-04-23 16:20:36 -04:00
|
|
|
|
2009-09-28 11:43:28 -04:00
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
2004-04-23 16:20:36 -04:00
|
|
|
|
2009-09-28 11: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-23 16:20:36 -04:00
|
|
|
#include "cmGetDirectoryPropertyCommand.h"
|
|
|
|
|
|
|
|
#include "cmake.h"
|
|
|
|
|
|
|
|
// cmGetDirectoryPropertyCommand
|
2008-01-23 10:28:26 -05:00
|
|
|
bool cmGetDirectoryPropertyCommand
|
|
|
|
::InitialPass(std::vector<std::string> const& args, cmExecutionStatus &)
|
2004-04-23 16:20:36 -04:00
|
|
|
{
|
|
|
|
if(args.size() < 2 )
|
|
|
|
{
|
|
|
|
this->SetError("called with incorrect number of arguments");
|
|
|
|
return false;
|
|
|
|
}
|
2012-08-13 13:42:58 -04:00
|
|
|
|
2005-09-13 10:39:42 -04:00
|
|
|
std::vector<std::string>::const_iterator i = args.begin();
|
|
|
|
std::string variable = *i;
|
|
|
|
++i;
|
2012-08-13 13:42:58 -04:00
|
|
|
|
2005-09-13 10:39:42 -04:00
|
|
|
// get the directory argument if there is one
|
2006-03-15 11:02:08 -05:00
|
|
|
cmMakefile *dir = this->Makefile;
|
2005-09-13 10: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()))
|
|
|
|
{
|
2015-04-16 20:06:54 +02:00
|
|
|
sd = this->Makefile->GetCurrentSourceDirectory();
|
2005-09-13 10:39:42 -04:00
|
|
|
sd += "/";
|
|
|
|
sd += *i;
|
|
|
|
}
|
2006-10-16 15:18:03 -04:00
|
|
|
|
|
|
|
// The local generators are associated with collapsed paths.
|
2014-10-15 14:54:05 +02:00
|
|
|
sd = cmSystemTools::CollapseFullPath(sd);
|
2006-10-16 15:18:03 -04:00
|
|
|
|
2005-09-13 10:39:42 -04:00
|
|
|
// lookup the makefile from the directory name
|
2015-08-02 12:39:51 +02:00
|
|
|
dir = this->Makefile->GetGlobalGenerator()->FindMakefile(sd);
|
|
|
|
if (!dir)
|
2005-09-13 10:39:42 -04:00
|
|
|
{
|
|
|
|
this->SetError
|
2006-05-10 15: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 10:39:42 -04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
++i;
|
|
|
|
}
|
2004-04-23 16:20:36 -04:00
|
|
|
|
2005-09-13 10:39:42 -04:00
|
|
|
// OK, now we have the directory to process, we just get the requested
|
|
|
|
// information out of it
|
2012-08-13 13:42:58 -04:00
|
|
|
|
2007-07-10 13:52:41 -04:00
|
|
|
if ( *i == "DEFINITION" )
|
2005-09-13 10:39:42 -04:00
|
|
|
{
|
|
|
|
++i;
|
|
|
|
if (i == args.end())
|
|
|
|
{
|
2006-05-10 15: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 10:39:42 -04:00
|
|
|
return false;
|
|
|
|
}
|
2015-06-08 22:03:07 +02:00
|
|
|
std::string output = dir->GetSafeDefinition(*i);
|
2014-03-11 00:04:11 +01:00
|
|
|
this->Makefile->AddDefinition(variable, output.c_str());
|
2007-07-12 10:17:37 -04:00
|
|
|
return true;
|
2005-09-13 10:39:42 -04:00
|
|
|
}
|
2007-07-10 13:52:41 -04:00
|
|
|
|
2015-06-06 09:41:20 +02:00
|
|
|
const char *prop = 0;
|
|
|
|
if (!i->empty())
|
|
|
|
{
|
2015-06-07 14:50:54 +02:00
|
|
|
if (*i == "DEFINITIONS")
|
|
|
|
{
|
|
|
|
switch(this->Makefile->GetPolicyStatus(cmPolicies::CMP0059))
|
|
|
|
{
|
|
|
|
case cmPolicies::WARN:
|
|
|
|
this->Makefile->IssueMessage(cmake::AUTHOR_WARNING,
|
|
|
|
cmPolicies::GetPolicyWarning(cmPolicies::CMP0059));
|
|
|
|
case cmPolicies::OLD:
|
|
|
|
this->StoreResult(variable,
|
|
|
|
this->Makefile->GetDefineFlagsCMP0059());
|
|
|
|
return true;
|
|
|
|
case cmPolicies::NEW:
|
|
|
|
case cmPolicies::REQUIRED_ALWAYS:
|
|
|
|
case cmPolicies::REQUIRED_IF_USED:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2015-06-06 09:41:20 +02:00
|
|
|
prop = dir->GetProperty(*i);
|
|
|
|
}
|
2015-06-08 22:00:37 +02:00
|
|
|
this->StoreResult(variable, prop);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void cmGetDirectoryPropertyCommand::StoreResult(std::string const& variable,
|
|
|
|
const char* prop)
|
|
|
|
{
|
2007-07-10 13:52:41 -04:00
|
|
|
if (prop)
|
2004-04-23 16:20:36 -04:00
|
|
|
{
|
2014-03-11 00:04:11 +01:00
|
|
|
this->Makefile->AddDefinition(variable, prop);
|
2015-06-08 22:00:37 +02:00
|
|
|
return;
|
2004-04-23 16:20:36 -04:00
|
|
|
}
|
2014-03-11 00:04:11 +01:00
|
|
|
this->Makefile->AddDefinition(variable, "");
|
2004-04-23 16:20:36 -04:00
|
|
|
}
|
|
|
|
|