diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-08-04 17:19:41 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-08-05 16:20:43 (GMT) |
commit | 41abdc17df99662a8e99ba895050dbc8c0e34b8e (patch) | |
tree | ca27f70ba5884758eb78d64df23d9202c69c7a1f /Source/cmGeneratorTarget.h | |
parent | 1aa13f2b58e477095f76d28a8d9bb1b83a9dd1f5 (diff) | |
download | CMake-41abdc17df99662a8e99ba895050dbc8c0e34b8e.zip CMake-41abdc17df99662a8e99ba895050dbc8c0e34b8e.tar.gz CMake-41abdc17df99662a8e99ba895050dbc8c0e34b8e.tar.bz2 |
cmGeneratorTarget: Move GetSOName from cmTarget..
Diffstat (limited to 'Source/cmGeneratorTarget.h')
-rw-r--r-- | Source/cmGeneratorTarget.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/cmGeneratorTarget.h b/Source/cmGeneratorTarget.h index a584c71..8e5c2ab 100644 --- a/Source/cmGeneratorTarget.h +++ b/Source/cmGeneratorTarget.h @@ -90,6 +90,9 @@ public: bool realname) const; std::string NormalGetRealName(const std::string& config) const; + /** Get the soname of the target. Allowed only for a shared library. */ + std::string GetSOName(const std::string& config) const; + cmTarget* Target; cmMakefile* Makefile; cmLocalGenerator* LocalGenerator; |