diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-08-04 19:22:30 +0200 |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-08-26 19:39:29 +0200 |
commit | 8bfb0c53dae93d697ca5d92ff79068af351fe56b (patch) | |
tree | 06d0663332a93454fde705ca6616110402c90c5c /Source/cmGeneratorTarget.h | |
parent | 2cb3e5740269757f6f93d24a4d13570ee72de318 (diff) | |
download | cmake-8bfb0c53dae93d697ca5d92ff79068af351fe56b.tar.gz |
cmGeneratorTarget: Move link iface helpers from cmTarget.
Diffstat (limited to 'Source/cmGeneratorTarget.h')
-rw-r--r-- | Source/cmGeneratorTarget.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Source/cmGeneratorTarget.h b/Source/cmGeneratorTarget.h index 9c5adf6540..2e0d5fe76a 100644 --- a/Source/cmGeneratorTarget.h +++ b/Source/cmGeneratorTarget.h @@ -404,6 +404,14 @@ private: GetImportLinkInterface(const std::string& config, cmTarget const* head, bool usage_requirements_only) const; + void ExpandLinkItems(std::string const& prop, std::string const& value, + std::string const& config, cmTarget const* headTarget, + bool usage_requirements_only, + std::vector<cmLinkItem>& items, + bool& hadHeadSensitiveCondition) const; + void LookupLinkItems(std::vector<std::string> const& names, + std::vector<cmLinkItem>& items) const; + typedef std::pair<std::string, bool> OutputNameKey; typedef std::map<OutputNameKey, std::string> OutputNameMapType; mutable OutputNameMapType OutputNameMap; |