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.h | |
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.h')
-rw-r--r-- | Source/cmGeneratorTarget.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/cmGeneratorTarget.h b/Source/cmGeneratorTarget.h index 9ecbbbe..f96adad 100644 --- a/Source/cmGeneratorTarget.h +++ b/Source/cmGeneratorTarget.h @@ -118,6 +118,11 @@ public: /** Get the soname of the target. Allowed only for a shared library. */ std::string GetSOName(const std::string& config) const; + void GetFullNameComponents(std::string& prefix, + std::string& base, std::string& suffix, + const std::string& config="", + bool implib = false) const; + cmTarget* Target; cmMakefile* Makefile; cmLocalGenerator* LocalGenerator; |