summaryrefslogtreecommitdiffstats
path: root/Source/cmGlobalGenerator.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2015-10-16 13:35:37 (GMT)
committerCMake Topic Stage <kwrobot@kitware.com>2015-10-16 13:35:37 (GMT)
commitdfd371dc013f14fb8e52c4f16e4a0f03a1ead9ce (patch)
tree9d0b76947725b4d88fcb6e97b988180685e30747 /Source/cmGlobalGenerator.cxx
parentf13521317a43af4ebb2996c9916d1d1da695c5fc (diff)
parentc4ae157865291d73113f81d4c9a9c2dd86598efc (diff)
downloadCMake-dfd371dc013f14fb8e52c4f16e4a0f03a1ead9ce.zip
CMake-dfd371dc013f14fb8e52c4f16e4a0f03a1ead9ce.tar.gz
CMake-dfd371dc013f14fb8e52c4f16e4a0f03a1ead9ce.tar.bz2
Merge topic 'genex-consumers-generator-targets'
c4ae1578 Genex: Port some access API to cmGeneratorTarget. 6d27a3db Genex: Port implementation to cmGeneratorTarget.
Diffstat (limited to 'Source/cmGlobalGenerator.cxx')
-rw-r--r--Source/cmGlobalGenerator.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmGlobalGenerator.cxx b/Source/cmGlobalGenerator.cxx
index 338f496..a42ea22 100644
--- a/Source/cmGlobalGenerator.cxx
+++ b/Source/cmGlobalGenerator.cxx
@@ -3029,13 +3029,13 @@ std::string cmGlobalGenerator::EscapeJSON(const std::string& s) {
//----------------------------------------------------------------------------
void cmGlobalGenerator::SetFilenameTargetDepends(cmSourceFile* sf,
- std::set<cmTarget const*> tgts)
+ std::set<cmGeneratorTarget const*> tgts)
{
this->FilenameTargetDepends[sf] = tgts;
}
//----------------------------------------------------------------------------
-std::set<cmTarget const*> const&
+std::set<cmGeneratorTarget const*> const&
cmGlobalGenerator::GetFilenameTargetDepends(cmSourceFile* sf) const {
return this->FilenameTargetDepends[sf];
}