diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-08-05 17:19:50 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-10-10 09:03:48 (GMT) |
commit | 3e428fdcb4640411f8cbc4adc42c30b9c8b8032e (patch) | |
tree | 17340538688948d3a8057daaac73672f761296d3 /Source/cmTarget.cxx | |
parent | 110fd2fba1cbd6c3d89f5460d3f58a94d52d4546 (diff) | |
download | CMake-3e428fdcb4640411f8cbc4adc42c30b9c8b8032e.zip CMake-3e428fdcb4640411f8cbc4adc42c30b9c8b8032e.tar.gz CMake-3e428fdcb4640411f8cbc4adc42c30b9c8b8032e.tar.bz2 |
cmGeneratorTarget: Move IsImportedSharedLibWithoutSOName from cmTarget.
Diffstat (limited to 'Source/cmTarget.cxx')
-rw-r--r-- | Source/cmTarget.cxx | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/Source/cmTarget.cxx b/Source/cmTarget.cxx index 88bda67..3de7efe 100644 --- a/Source/cmTarget.cxx +++ b/Source/cmTarget.cxx @@ -2178,20 +2178,6 @@ const char* cmTarget::GetPrefixVariableInternal(bool implib) const } //---------------------------------------------------------------------------- -bool cmTarget::IsImportedSharedLibWithoutSOName( - const std::string& config) const -{ - if(this->IsImported() && this->GetType() == cmTarget::SHARED_LIBRARY) - { - if(cmTarget::ImportInfo const* info = this->GetImportInfo(config)) - { - return info->NoSOName; - } - } - return false; -} - -//---------------------------------------------------------------------------- std::string cmTarget::GetFullNameImported(const std::string& config, bool implib) const { |