2016-09-27 19:01:08 +00:00
|
|
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
2002-03-29 15:06:30 +00:00
|
|
|
#include "cmGetSourceFilePropertyCommand.h"
|
|
|
|
|
2016-10-25 18:35:04 +00:00
|
|
|
#include "cmMakefile.h"
|
2004-02-22 18:14:59 +00:00
|
|
|
#include "cmSourceFile.h"
|
|
|
|
|
2016-10-25 18:35:04 +00:00
|
|
|
class cmExecutionStatus;
|
|
|
|
|
2002-03-29 15:06:30 +00:00
|
|
|
// cmSetSourceFilePropertyCommand
|
2016-05-16 14:34:04 +00:00
|
|
|
bool cmGetSourceFilePropertyCommand::InitialPass(
|
|
|
|
std::vector<std::string> const& args, cmExecutionStatus&)
|
2002-03-29 15:06:30 +00:00
|
|
|
{
|
2016-05-16 14:34:04 +00:00
|
|
|
if (args.size() != 3) {
|
2002-03-29 15:06:30 +00:00
|
|
|
this->SetError("called with incorrect number of arguments");
|
|
|
|
return false;
|
2016-05-16 14:34:04 +00:00
|
|
|
}
|
2002-03-29 15:06:30 +00:00
|
|
|
const char* var = args[0].c_str();
|
|
|
|
const char* file = args[1].c_str();
|
2006-03-15 16:02:08 +00:00
|
|
|
cmSourceFile* sf = this->Makefile->GetSource(file);
|
2002-08-26 19:22:31 +00:00
|
|
|
|
2006-03-22 19:06:52 +00:00
|
|
|
// for the location we must create a source file first
|
2016-05-16 14:34:04 +00:00
|
|
|
if (!sf && args[2] == "LOCATION") {
|
2014-03-11 22:04:11 +00:00
|
|
|
sf = this->Makefile->CreateSource(file);
|
2016-05-16 14:34:04 +00:00
|
|
|
}
|
|
|
|
if (sf) {
|
|
|
|
if (args[2] == "LANGUAGE") {
|
2014-02-04 02:20:56 +00:00
|
|
|
this->Makefile->AddDefinition(var, sf->GetLanguage().c_str());
|
2007-12-18 14:57:41 +00:00
|
|
|
return true;
|
2016-05-16 14:34:04 +00:00
|
|
|
}
|
2016-06-27 20:44:16 +00:00
|
|
|
const char* prop = CM_NULLPTR;
|
2016-05-16 14:34:04 +00:00
|
|
|
if (!args[2].empty()) {
|
2015-06-06 07:41:20 +00:00
|
|
|
prop = sf->GetPropertyForUser(args[2]);
|
2016-05-16 14:34:04 +00:00
|
|
|
}
|
|
|
|
if (prop) {
|
2006-03-15 16:02:08 +00:00
|
|
|
this->Makefile->AddDefinition(var, prop);
|
2002-08-26 19:22:31 +00:00
|
|
|
return true;
|
2002-03-29 15:06:30 +00:00
|
|
|
}
|
2016-05-16 14:34:04 +00:00
|
|
|
}
|
2002-08-26 19:22:31 +00:00
|
|
|
|
2006-03-15 16:02:08 +00:00
|
|
|
this->Makefile->AddDefinition(var, "NOTFOUND");
|
2002-03-29 15:06:30 +00:00
|
|
|
return true;
|
|
|
|
}
|