diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-08-04 17:19:47 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-08-05 16:20:47 (GMT) |
commit | 62720e44be3e9f28e4c1e7d38206b2c51d34745e (patch) | |
tree | 7d6443b0bdb6589fa7ad935b34e7fc3a70553aa2 /Source/cmGeneratorTarget.cxx | |
parent | e27d737e27fbfc8cfde020ec02d6b2c74afb6885 (diff) | |
download | CMake-62720e44be3e9f28e4c1e7d38206b2c51d34745e.zip CMake-62720e44be3e9f28e4c1e7d38206b2c51d34745e.tar.gz CMake-62720e44be3e9f28e4c1e7d38206b2c51d34745e.tar.bz2 |
cmGeneratorTarget: Move GetFullNameComponents from cmTarget.
Diffstat (limited to 'Source/cmGeneratorTarget.cxx')
-rw-r--r-- | Source/cmGeneratorTarget.cxx | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Source/cmGeneratorTarget.cxx b/Source/cmGeneratorTarget.cxx index 6481390..4be034f 100644 --- a/Source/cmGeneratorTarget.cxx +++ b/Source/cmGeneratorTarget.cxx @@ -891,6 +891,16 @@ std::string cmGeneratorTarget::GetSOName(const std::string& config) const } //---------------------------------------------------------------------------- +void cmGeneratorTarget::GetFullNameComponents(std::string& prefix, + std::string& base, + std::string& suffix, + const std::string& config, + bool implib) const +{ + this->Target->GetFullNameInternal(config, implib, prefix, base, suffix); +} + +//---------------------------------------------------------------------------- std::string cmGeneratorTarget::GetModuleDefinitionFile(const std::string& config) const { |