2016-09-27 22:01:08 +03:00
|
|
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
2004-04-24 00:20:36 +04:00
|
|
|
#include "cmGetDirectoryPropertyCommand.h"
|
|
|
|
|
|
|
|
#include "cmake.h"
|
|
|
|
|
|
|
|
// cmGetDirectoryPropertyCommand
|
2016-05-16 17:34:04 +03:00
|
|
|
bool cmGetDirectoryPropertyCommand::InitialPass(
|
|
|
|
std::vector<std::string> const& args, cmExecutionStatus&)
|
2004-04-24 00:20:36 +04:00
|
|
|
{
|
2016-05-16 17:34:04 +03:00
|
|
|
if (args.size() < 2) {
|
2004-04-24 00:20:36 +04:00
|
|
|
this->SetError("called with incorrect number of arguments");
|
|
|
|
return false;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
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;
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2005-09-13 18:39:42 +04:00
|
|
|
// get the directory argument if there is one
|
2016-05-16 17:34:04 +03:00
|
|
|
cmMakefile* dir = this->Makefile;
|
|
|
|
if (*i == "DIRECTORY") {
|
2005-09-13 18:39:42 +04:00
|
|
|
++i;
|
2016-05-16 17:34:04 +03:00
|
|
|
if (i == args.end()) {
|
|
|
|
this->SetError(
|
|
|
|
"DIRECTORY argument provided without subsequent arguments");
|
2005-09-13 18:39:42 +04:00
|
|
|
return false;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2005-09-13 18:39:42 +04:00
|
|
|
std::string sd = *i;
|
|
|
|
// make sure the start dir is a full path
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!cmSystemTools::FileIsFullPath(sd.c_str())) {
|
2015-04-16 21:06:54 +03:00
|
|
|
sd = this->Makefile->GetCurrentSourceDirectory();
|
2005-09-13 18:39:42 +04:00
|
|
|
sd += "/";
|
|
|
|
sd += *i;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2006-10-16 23:18:03 +04:00
|
|
|
|
|
|
|
// The local generators are associated with collapsed paths.
|
2014-10-15 16:54:05 +04:00
|
|
|
sd = cmSystemTools::CollapseFullPath(sd);
|
2006-10-16 23:18:03 +04:00
|
|
|
|
2005-09-13 18:39:42 +04:00
|
|
|
// lookup the makefile from the directory name
|
2015-08-02 13:39:51 +03:00
|
|
|
dir = this->Makefile->GetGlobalGenerator()->FindMakefile(sd);
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!dir) {
|
|
|
|
this->SetError(
|
|
|
|
"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;
|
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
++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
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
if (*i == "DEFINITION") {
|
2005-09-13 18:39:42 +04:00
|
|
|
++i;
|
2016-05-16 17:34:04 +03:00
|
|
|
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;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2015-06-08 23:03:07 +03:00
|
|
|
std::string output = dir->GetSafeDefinition(*i);
|
2014-03-11 03:04:11 +04:00
|
|
|
this->Makefile->AddDefinition(variable, output.c_str());
|
2007-07-12 18:17:37 +04:00
|
|
|
return true;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2007-07-10 21:52:41 +04:00
|
|
|
|
2016-06-27 23:44:16 +03:00
|
|
|
const char* prop = CM_NULLPTR;
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!i->empty()) {
|
|
|
|
if (*i == "DEFINITIONS") {
|
|
|
|
switch (this->Makefile->GetPolicyStatus(cmPolicies::CMP0059)) {
|
2015-06-07 15:50:54 +03:00
|
|
|
case cmPolicies::WARN:
|
2016-05-16 17:34:04 +03:00
|
|
|
this->Makefile->IssueMessage(
|
|
|
|
cmake::AUTHOR_WARNING,
|
|
|
|
cmPolicies::GetPolicyWarning(cmPolicies::CMP0059));
|
2015-06-07 15:50:54 +03:00
|
|
|
case cmPolicies::OLD:
|
2016-05-16 17:34:04 +03:00
|
|
|
this->StoreResult(variable, this->Makefile->GetDefineFlagsCMP0059());
|
|
|
|
return true;
|
2015-06-07 15:50:54 +03:00
|
|
|
case cmPolicies::NEW:
|
|
|
|
case cmPolicies::REQUIRED_ALWAYS:
|
|
|
|
case cmPolicies::REQUIRED_IF_USED:
|
|
|
|
break;
|
|
|
|
}
|
2015-06-06 10:41:20 +03:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
prop = dir->GetProperty(*i);
|
|
|
|
}
|
2015-06-08 23:00:37 +03:00
|
|
|
this->StoreResult(variable, prop);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void cmGetDirectoryPropertyCommand::StoreResult(std::string const& variable,
|
|
|
|
const char* prop)
|
|
|
|
{
|
2016-05-16 17:34:04 +03:00
|
|
|
if (prop) {
|
2014-03-11 03:04:11 +04:00
|
|
|
this->Makefile->AddDefinition(variable, prop);
|
2015-06-08 23:00:37 +03:00
|
|
|
return;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2014-03-11 03:04:11 +04:00
|
|
|
this->Makefile->AddDefinition(variable, "");
|
2004-04-24 00:20:36 +04:00
|
|
|
}
|