cmake/Source/cmGetDirectoryPropertyCommand.cxx

106 lines
3.1 KiB
C++
Raw Normal View History

2016-10-30 18:24:19 +01:00
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
file Copyright.txt or https://cmake.org/licensing for details. */
#include "cmGetDirectoryPropertyCommand.h"
2017-04-14 19:02:05 +02:00
#include "cmGlobalGenerator.h"
#include "cmMakefile.h"
#include "cmPolicies.h"
#include "cmSystemTools.h"
#include "cmake.h"
2017-04-14 19:02:05 +02:00
class cmExecutionStatus;
// cmGetDirectoryPropertyCommand
2016-07-09 11:21:54 +02:00
bool cmGetDirectoryPropertyCommand::InitialPass(
std::vector<std::string> const& args, cmExecutionStatus&)
{
2016-07-09 11:21:54 +02:00
if (args.size() < 2) {
this->SetError("called with incorrect number of arguments");
return false;
2016-07-09 11:21:54 +02:00
}
2013-03-16 19:13:01 +02:00
std::vector<std::string>::const_iterator i = args.begin();
2017-07-20 19:35:53 +02:00
std::string const& variable = *i;
++i;
2013-03-16 19:13:01 +02:00
// get the directory argument if there is one
2016-07-09 11:21:54 +02:00
cmMakefile* dir = this->Makefile;
if (*i == "DIRECTORY") {
++i;
2016-07-09 11:21:54 +02:00
if (i == args.end()) {
this->SetError(
"DIRECTORY argument provided without subsequent arguments");
return false;
2016-07-09 11:21:54 +02:00
}
std::string sd = *i;
// make sure the start dir is a full path
2016-07-09 11:21:54 +02:00
if (!cmSystemTools::FileIsFullPath(sd.c_str())) {
2015-08-17 11:37:30 +02:00
sd = this->Makefile->GetCurrentSourceDirectory();
sd += "/";
sd += *i;
2016-07-09 11:21:54 +02:00
}
// The local generators are associated with collapsed paths.
2015-04-27 22:25:09 +02:00
sd = cmSystemTools::CollapseFullPath(sd);
// lookup the makefile from the directory name
2015-11-17 17:22:37 +01:00
dir = this->Makefile->GetGlobalGenerator()->FindMakefile(sd);
2016-07-09 11:21:54 +02: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.");
return false;
}
2016-07-09 11:21:54 +02:00
++i;
}
// OK, now we have the directory to process, we just get the requested
// information out of it
2013-03-16 19:13:01 +02:00
2016-07-09 11:21:54 +02:00
if (*i == "DEFINITION") {
++i;
2016-07-09 11:21:54 +02:00
if (i == args.end()) {
this->SetError("A request for a variable definition was made without "
"providing the name of the variable to get.");
return false;
2016-07-09 11:21:54 +02:00
}
2015-11-17 17:22:37 +01:00
std::string output = dir->GetSafeDefinition(*i);
2015-04-27 22:25:09 +02:00
this->Makefile->AddDefinition(variable, output.c_str());
return true;
2016-07-09 11:21:54 +02:00
}
2018-01-26 17:06:56 +01:00
const char* prop = nullptr;
2016-07-09 11:21:54 +02:00
if (!i->empty()) {
if (*i == "DEFINITIONS") {
switch (this->Makefile->GetPolicyStatus(cmPolicies::CMP0059)) {
2015-11-17 17:22:37 +01:00
case cmPolicies::WARN:
2016-07-09 11:21:54 +02:00
this->Makefile->IssueMessage(
cmake::AUTHOR_WARNING,
cmPolicies::GetPolicyWarning(cmPolicies::CMP0059));
2017-07-20 19:35:53 +02:00
CM_FALLTHROUGH;
2015-11-17 17:22:37 +01:00
case cmPolicies::OLD:
2016-07-09 11:21:54 +02:00
this->StoreResult(variable, this->Makefile->GetDefineFlagsCMP0059());
return true;
2015-11-17 17:22:37 +01:00
case cmPolicies::NEW:
case cmPolicies::REQUIRED_ALWAYS:
case cmPolicies::REQUIRED_IF_USED:
break;
}
}
2016-07-09 11:21:54 +02:00
prop = dir->GetProperty(*i);
}
2015-11-17 17:22:37 +01:00
this->StoreResult(variable, prop);
return true;
}
void cmGetDirectoryPropertyCommand::StoreResult(std::string const& variable,
const char* prop)
{
2016-07-09 11:21:54 +02:00
if (prop) {
2015-04-27 22:25:09 +02:00
this->Makefile->AddDefinition(variable, prop);
2015-11-17 17:22:37 +01:00
return;
2016-07-09 11:21:54 +02:00
}
2015-04-27 22:25:09 +02:00
this->Makefile->AddDefinition(variable, "");
}