diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-10-16 17:19:51 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-10-16 18:24:44 (GMT) |
commit | beff29f0d4bf1ffface0e6833f29f2f04ceccf0b (patch) | |
tree | a5c2b35e96491f4073c2972090943e1623047381 /Source/cmGeneratorTarget.h | |
parent | 12e4790a0b40d8176940f855f7f6c9cfe6c39f9f (diff) | |
download | CMake-beff29f0d4bf1ffface0e6833f29f2f04ceccf0b.zip CMake-beff29f0d4bf1ffface0e6833f29f2f04ceccf0b.tar.gz CMake-beff29f0d4bf1ffface0e6833f29f2f04ceccf0b.tar.bz2 |
cmGeneratorTarget: Move ComputeVersionedName 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 f3b8d1f..f5a894b 100644 --- a/Source/cmGeneratorTarget.h +++ b/Source/cmGeneratorTarget.h @@ -483,6 +483,13 @@ private: // Returns ARCHIVE, LIBRARY, or RUNTIME based on platform and type. const char* GetOutputTargetType(bool implib) const; + void ComputeVersionedName(std::string& vName, + std::string const& prefix, + std::string const& base, + std::string const& suffix, + std::string const& name, + const char* version) const; + struct CompatibleInterfacesBase { std::set<std::string> PropsBool; |