diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-04-04 21:33:26 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-04-13 18:13:13 (GMT) |
commit | b159bff732d4e34a683edd1740604428049d1819 (patch) | |
tree | ef8513a3fa37802bc27c11543209da7e8cd9f2da /Source/cmGetPropertyCommand.cxx | |
parent | 62c5e6f1a19df0043a0e9aaba6cf7247f76a5cc3 (diff) | |
download | CMake-b159bff732d4e34a683edd1740604428049d1819.zip CMake-b159bff732d4e34a683edd1740604428049d1819.tar.gz CMake-b159bff732d4e34a683edd1740604428049d1819.tar.bz2 |
Move property definition to cmState.
Diffstat (limited to 'Source/cmGetPropertyCommand.cxx')
-rw-r--r-- | Source/cmGetPropertyCommand.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmGetPropertyCommand.cxx b/Source/cmGetPropertyCommand.cxx index 80edbcd..a8481ad 100644 --- a/Source/cmGetPropertyCommand.cxx +++ b/Source/cmGetPropertyCommand.cxx @@ -143,7 +143,7 @@ bool cmGetPropertyCommand // Lookup brief documentation. std::string output; if(cmPropertyDefinition* def = - this->Makefile->GetCMakeInstance()-> + this->Makefile->GetState()-> GetPropertyDefinition(this->PropertyName, scope)) { output = def->GetShortDescription(); @@ -159,7 +159,7 @@ bool cmGetPropertyCommand // Lookup full documentation. std::string output; if(cmPropertyDefinition* def = - this->Makefile->GetCMakeInstance()-> + this->Makefile->GetState()-> GetPropertyDefinition(this->PropertyName, scope)) { output = def->GetFullDescription(); @@ -173,7 +173,7 @@ bool cmGetPropertyCommand else if(this->InfoType == OutDefined) { // Lookup if the property is defined - if(this->Makefile->GetCMakeInstance()-> + if(this->Makefile->GetState()-> GetPropertyDefinition(this->PropertyName, scope)) { this->Makefile->AddDefinition(this->Variable, "1"); |