diff options
author | Brad King <brad.king@kitware.com> | 2014-06-11 14:39:51 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2014-06-23 13:14:44 (GMT) |
commit | cbf689c7dd39dc0952361b63e8322a0408b4569b (patch) | |
tree | a57919341354f08f67197803cb1b0f674429314f /Source/cmTarget.h | |
parent | 2f0004c143455387c4b6ecac2458fcec4d57643f (diff) | |
download | CMake-cbf689c7dd39dc0952361b63e8322a0408b4569b.zip CMake-cbf689c7dd39dc0952361b63e8322a0408b4569b.tar.gz CMake-cbf689c7dd39dc0952361b63e8322a0408b4569b.tar.bz2 |
cmTarget: Rename Get{TransitiveTarget => LinkImplementation}Closure
The method computes the transitive closure of targets starting with
the current target link implementation libraries. Clarify the name.
Diffstat (limited to 'Source/cmTarget.h')
-rw-r--r-- | Source/cmTarget.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmTarget.h b/Source/cmTarget.h index 762323f..2211338 100644 --- a/Source/cmTarget.h +++ b/Source/cmTarget.h @@ -276,8 +276,8 @@ public: void GetTransitivePropertyTargets(const std::string& config, cmTarget const* headTarget, std::vector<cmTarget*> &libs) const; - void GetTransitiveTargetClosure(const std::string& config, - std::vector<cmTarget*> &libs) const; + void GetLinkImplementationClosure(const std::string& config, + std::vector<cmTarget*> &libs) const; /** The link implementation specifies the direct library dependencies needed by the object files of the target. */ |