cmake/Source/cmGetDirectoryPropertyCommand.cxx

108 lines
3.3 KiB
C++
Raw Normal View History

2009-10-04 10:30:41 +03:00
/*============================================================================
CMake - Cross Platform Makefile Generator
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
2009-10-04 10:30:41 +03:00
Distributed under the OSI-approved BSD License (the "License");
see accompanying file Copyright.txt for details.
2009-10-04 10:30:41 +03: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.
============================================================================*/
#include "cmGetDirectoryPropertyCommand.h"
#include "cmake.h"
// 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();
std::string 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
}
2016-07-09 11:21:54 +02:00
const char* prop = 0;
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));
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, "");
}