diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-08-04 17:19:45 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-08-05 16:20:46 (GMT) |
commit | 766839c56da82e12b6986fb5cf7c8d86442615bc (patch) | |
tree | f5211551a1a77e40f7e37d5dbeedf32fe0eafdda /Source/cmGeneratorTarget.h | |
parent | 47803e6f8e98984e740acf2f7c0a217de58717cd (diff) | |
download | CMake-766839c56da82e12b6986fb5cf7c8d86442615bc.zip CMake-766839c56da82e12b6986fb5cf7c8d86442615bc.tar.gz CMake-766839c56da82e12b6986fb5cf7c8d86442615bc.tar.bz2 |
cmGeneratorTarget: Move GetLibraryNames from cmTarget.
Diffstat (limited to 'Source/cmGeneratorTarget.h')
-rw-r--r-- | Source/cmGeneratorTarget.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Source/cmGeneratorTarget.h b/Source/cmGeneratorTarget.h index 49aa65b..7fb7c32 100644 --- a/Source/cmGeneratorTarget.h +++ b/Source/cmGeneratorTarget.h @@ -191,6 +191,13 @@ public: std::string& impName, std::string& pdbName, const std::string& config) const; + /** Get the names of the library needed to generate a build rule + that takes into account shared library version numbers. This + should be called only on a library target. */ + void GetLibraryNames(std::string& name, std::string& soName, + std::string& realName, std::string& impName, + std::string& pdbName, const std::string& config) const; + struct SourceFileFlags GetTargetSourceFileFlags(const cmSourceFile* sf) const; |