summaryrefslogtreecommitdiffstats
path: root/Source/cmGeneratorTarget.h
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-08-04 17:19:47 (GMT)
committerStephen Kelly <steveire@gmail.com>2015-08-05 16:20:47 (GMT)
commit62720e44be3e9f28e4c1e7d38206b2c51d34745e (patch)
tree7d6443b0bdb6589fa7ad935b34e7fc3a70553aa2 /Source/cmGeneratorTarget.h
parente27d737e27fbfc8cfde020ec02d6b2c74afb6885 (diff)
downloadCMake-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.h5
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;