cmGetDirectoryPropertyCommand: Extract StoreResult method.

This commit is contained in:
Stephen Kelly 2015-06-08 22:00:37 +02:00
parent d17aa60659
commit 8fc53c3ce8
2 changed files with 15 additions and 8 deletions

View File

@ -89,12 +89,18 @@ bool cmGetDirectoryPropertyCommand
{
prop = dir->GetProperty(*i);
}
if (prop)
{
this->Makefile->AddDefinition(variable, prop);
return true;
}
this->Makefile->AddDefinition(variable, "");
this->StoreResult(variable, prop);
return true;
}
void cmGetDirectoryPropertyCommand::StoreResult(std::string const& variable,
const char* prop)
{
if (prop)
{
this->Makefile->AddDefinition(variable, prop);
return;
}
this->Makefile->AddDefinition(variable, "");
}

View File

@ -40,8 +40,9 @@ public:
virtual std::string GetName() const { return "get_directory_property";}
cmTypeMacro(cmGetDirectoryPropertyCommand, cmCommand);
private:
void StoreResult(const std::string& variable, const char* prop);
};
#endif