cmake: Be clear that there is no chaining after global properties.

This commit is contained in:
Stephen Kelly 2015-04-05 10:11:30 +02:00
parent 364c7ea187
commit d280bae98f
1 changed files with 2 additions and 3 deletions

View File

@ -2273,8 +2273,6 @@ const char *cmake::GetProperty(const std::string& prop)
const char *cmake::GetProperty(const std::string& prop,
cmProperty::ScopeType scope)
{
bool chain = false;
// watch for special properties
std::string output = "";
if ( prop == "CACHE_VARIABLES" )
@ -2332,7 +2330,8 @@ const char *cmake::GetProperty(const std::string& prop,
return FOR_EACH_CXX_FEATURE(STRING_LIST_ELEMENT) + 1;
}
#undef STRING_LIST_ELEMENT
return this->Properties.GetPropertyValue(prop, scope, chain);
bool dummy = false;
return this->Properties.GetPropertyValue(prop, scope, dummy);
}
bool cmake::GetPropertyAsBool(const std::string& prop)