mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-11 08:20:18 -06:00
cmake: Be clear that there is no chaining after global properties.
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user