diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-10-19 23:01:57 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-10-20 22:52:23 (GMT) |
commit | c6e86955086e1824cd666bc69c802d48074cc138 (patch) | |
tree | 4d6be901e58d833f04c8c67f31c4dbc0b62dac4f /Source | |
parent | 18046bd50a502508f170baa6cec5c81efb33f180 (diff) | |
download | CMake-c6e86955086e1824cd666bc69c802d48074cc138.zip CMake-c6e86955086e1824cd666bc69c802d48074cc138.tar.gz CMake-c6e86955086e1824cd666bc69c802d48074cc138.tar.bz2 |
cmTarget: Remove unused NameResolvesToFramework.
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmTarget.cxx | 7 | ||||
-rw-r--r-- | Source/cmTarget.h | 2 |
2 files changed, 0 insertions, 9 deletions
diff --git a/Source/cmTarget.cxx b/Source/cmTarget.cxx index 0d8c57d..e056469 100644 --- a/Source/cmTarget.cxx +++ b/Source/cmTarget.cxx @@ -611,13 +611,6 @@ void cmTarget::ClearDependencyInformation( cmMakefile& mf, } //---------------------------------------------------------------------------- -bool cmTarget::NameResolvesToFramework(const std::string& libname) const -{ - return this->Makefile->GetGlobalGenerator()-> - NameResolvesToFramework(libname); -} - -//---------------------------------------------------------------------------- std::string cmTarget::GetDebugGeneratorExpressions(const std::string &value, cmTargetLinkLibraryType llt) const { diff --git a/Source/cmTarget.h b/Source/cmTarget.h index 9ed7f84..8a99472 100644 --- a/Source/cmTarget.h +++ b/Source/cmTarget.h @@ -145,8 +145,6 @@ public: */ void ClearDependencyInformation(cmMakefile& mf, const std::string& target); - // Check to see if a library is a framework and treat it different on Mac - bool NameResolvesToFramework(const std::string& libname) const; void AddLinkLibrary(cmMakefile& mf, const std::string& target, const std::string& lib, cmTargetLinkLibraryType llt); |