diff options
author | Brad King <brad.king@kitware.com> | 2015-10-16 13:35:37 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2015-10-16 13:35:37 (GMT) |
commit | dfd371dc013f14fb8e52c4f16e4a0f03a1ead9ce (patch) | |
tree | 9d0b76947725b4d88fcb6e97b988180685e30747 /Source/cmGlobalGenerator.cxx | |
parent | f13521317a43af4ebb2996c9916d1d1da695c5fc (diff) | |
parent | c4ae157865291d73113f81d4c9a9c2dd86598efc (diff) | |
download | CMake-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.cxx | 4 |
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]; } |