diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-10-10 16:41:51 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-10-15 20:40:56 (GMT) |
commit | c4ae157865291d73113f81d4c9a9c2dd86598efc (patch) | |
tree | 8163dbedec892a7ea48b3548a9b17a954705e10c /Source/cmGlobalGenerator.h | |
parent | 6d27a3dbfbfb8852d8b8ff5c6fc7432eebc604e5 (diff) | |
download | CMake-c4ae157865291d73113f81d4c9a9c2dd86598efc.zip CMake-c4ae157865291d73113f81d4c9a9c2dd86598efc.tar.gz CMake-c4ae157865291d73113f81d4c9a9c2dd86598efc.tar.bz2 |
Genex: Port some access API to cmGeneratorTarget.
Diffstat (limited to 'Source/cmGlobalGenerator.h')
-rw-r--r-- | Source/cmGlobalGenerator.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmGlobalGenerator.h b/Source/cmGlobalGenerator.h index fc81708..6887409 100644 --- a/Source/cmGlobalGenerator.h +++ b/Source/cmGlobalGenerator.h @@ -354,8 +354,8 @@ public: void CreateEvaluationSourceFiles(std::string const& config) const; void SetFilenameTargetDepends(cmSourceFile* sf, - std::set<cmTarget const*> tgts); - std::set<cmTarget const*> const& + std::set<const cmGeneratorTarget*> tgts); + const std::set<const cmGeneratorTarget*>& GetFilenameTargetDepends(cmSourceFile* sf) const; #if defined(CMAKE_BUILD_WITH_CMAKE) @@ -508,7 +508,7 @@ private: // track targets to issue CMP0042 warning for. std::set<std::string> CMP0042WarnTargets; - mutable std::map<cmSourceFile*, std::set<cmTarget const*> > + mutable std::map<cmSourceFile*, std::set<cmGeneratorTarget const*> > FilenameTargetDepends; #if defined(CMAKE_BUILD_WITH_CMAKE) |