浏览代码

cmGlobalGenerator: Rename method.

Stephen Kelly 10 年之前
父节点
当前提交
ebf8d0a99a
共有 2 个文件被更改,包括 3 次插入3 次删除
  1. 2 2
      Source/cmGlobalGenerator.cxx
  2. 1 1
      Source/cmGlobalGenerator.h

+ 2 - 2
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;

+ 1 - 1
Source/cmGlobalGenerator.h

@@ -394,7 +394,7 @@ protected:
   // Fill the ProjectMap, this must be called after LocalGenerators
   // has been populated.
   void FillProjectMap();
-  void CheckLocalGenerators();
+  void CheckTargetProperties();
   bool IsExcluded(cmState::Snapshot const& root,
                   cmState::Snapshot const& snp) const;
   bool IsExcluded(cmLocalGenerator* root, cmLocalGenerator* gen) const;