diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-08-02 10:44:07 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-08-28 16:44:39 (GMT) |
commit | ebf8d0a99ac6eb231180b3315b976bcc58baa9f3 (patch) | |
tree | 9d43e596646ca688e5317e815b599dc4a29d0ee6 /Source/cmGlobalGenerator.cxx | |
parent | bd096d30e05fe66a0bf702fe7e366b0042ea14ae (diff) | |
download | CMake-ebf8d0a99ac6eb231180b3315b976bcc58baa9f3.zip CMake-ebf8d0a99ac6eb231180b3315b976bcc58baa9f3.tar.gz CMake-ebf8d0a99ac6eb231180b3315b976bcc58baa9f3.tar.bz2 |
cmGlobalGenerator: Rename method.
Diffstat (limited to 'Source/cmGlobalGenerator.cxx')
-rw-r--r-- | Source/cmGlobalGenerator.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmGlobalGenerator.cxx b/Source/cmGlobalGenerator.cxx index ac1c119..e0e5af1 100644 --- a/Source/cmGlobalGenerator.cxx +++ b/Source/cmGlobalGenerator.cxx @@ -1156,7 +1156,7 @@ void cmGlobalGenerator::Configure() // check for link libraries and include directories containing "NOTFOUND" // and for infinite loops - this->CheckLocalGenerators(); + this->CheckTargetProperties(); // at this point this->LocalGenerators has been filled, // so create the map from project name to vector of local generators @@ -1636,7 +1636,7 @@ void cmGlobalGenerator::ComputeTargetObjectDirectory(cmGeneratorTarget*) const { } -void cmGlobalGenerator::CheckLocalGenerators() +void cmGlobalGenerator::CheckTargetProperties() { std::map<std::string, std::string> notFoundMap; // std::set<std::string> notFoundMap; |