diff options
author | Brad King <brad.king@kitware.com> | 2014-06-16 18:12:18 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2014-06-23 13:22:08 (GMT) |
commit | f5c18c9c1c0434f3481b1684af5fe6e0ea823f87 (patch) | |
tree | 78cfaed0901573a49ee8483a81158969a3f73afa /Source/cmTarget.h | |
parent | 281eb3d8a6a4983a33d5a8d70a0e21ebb3bd115f (diff) | |
download | CMake-f5c18c9c1c0434f3481b1684af5fe6e0ea823f87.zip CMake-f5c18c9c1c0434f3481b1684af5fe6e0ea823f87.tar.gz CMake-f5c18c9c1c0434f3481b1684af5fe6e0ea823f87.tar.bz2 |
cmTarget: Drop GetDirectLinkLibraries methods
Inline the implementation in the last remaining caller and drop the
methods.
Diffstat (limited to 'Source/cmTarget.h')
-rw-r--r-- | Source/cmTarget.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/Source/cmTarget.h b/Source/cmTarget.h index 2e0df42..3f534f2 100644 --- a/Source/cmTarget.h +++ b/Source/cmTarget.h @@ -169,8 +169,6 @@ public: return this->LinkLibraries;} const LinkLibraryVectorType &GetOriginalLinkLibraries() const {return this->OriginalLinkLibraries;} - void GetDirectLinkLibraries(const std::string& config, - std::vector<std::string> &) const; /** Compute the link type to use for the given configuration. */ LinkLibraryType ComputeLinkType(const std::string& config) const; @@ -766,9 +764,6 @@ private: cmTarget const* head, bool &exists) const; - void GetDirectLinkLibrariesInternal(const std::string& config, - std::vector<std::string>& libs, - cmTarget const* head) const; LinkImplementation const* GetLinkImplementationLibrariesInternal(const std::string& config, cmTarget const* head) const; |