diff options
author | David Cole <david.cole@kitware.com> | 2011-12-07 21:46:35 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2011-12-07 21:46:35 (GMT) |
commit | 174ecf51f857031b0204a516df809814d4dc0386 (patch) | |
tree | 4009c61dc9f4c8360bd98cd940d8021f4253fabe /Source/cmTarget.h | |
parent | 0ea95b99cebc23d9fbf7d50872176911f5f65f96 (diff) | |
parent | 96f65ba68e82b64eac67b75282bbcab8103c0eb0 (diff) | |
download | CMake-174ecf51f857031b0204a516df809814d4dc0386.zip CMake-174ecf51f857031b0204a516df809814d4dc0386.tar.gz CMake-174ecf51f857031b0204a516df809814d4dc0386.tar.bz2 |
Merge topic 'refactor-versioned-lib-names'
96f65ba cmTarget: Create helper method for versioned library names
Diffstat (limited to 'Source/cmTarget.h')
-rw-r--r-- | Source/cmTarget.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Source/cmTarget.h b/Source/cmTarget.h index 09fee6c..59f0184 100644 --- a/Source/cmTarget.h +++ b/Source/cmTarget.h @@ -565,6 +565,7 @@ private: cmPropertyMap Properties; LinkLibraryVectorType OriginalLinkLibraries; bool DLLPlatform; + bool IsApple; bool IsImportedTarget; // Cache target output paths for each configuration. @@ -603,6 +604,12 @@ private: cmTargetInternalPointer Internal; void ConstructSourceFileFlags(); + void ComputeVersionedName(std::string& vName, + std::string const& prefix, + std::string const& base, + std::string const& suffix, + std::string const& name, + const char* version); }; typedef std::map<cmStdString,cmTarget> cmTargets; |