diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-08-26 17:38:57 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-08-26 17:38:57 (GMT) |
commit | 6d3d099b4a2d8b020fb1a9ebeb29b17b3fb6c9d6 (patch) | |
tree | 8c4dee3bfe65a0cb483896dd9b187452a63ad3b7 /Source/cmGeneratorTarget.h | |
parent | 0db9d9278760c90be1fbf5c4eeb93ef9c524041a (diff) | |
download | CMake-6d3d099b4a2d8b020fb1a9ebeb29b17b3fb6c9d6.zip CMake-6d3d099b4a2d8b020fb1a9ebeb29b17b3fb6c9d6.tar.gz CMake-6d3d099b4a2d8b020fb1a9ebeb29b17b3fb6c9d6.tar.bz2 |
cmGeneratorTarget: Move ComputeLinkInterfaceLibraries from cmTarget.
Diffstat (limited to 'Source/cmGeneratorTarget.h')
-rw-r--r-- | Source/cmGeneratorTarget.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Source/cmGeneratorTarget.h b/Source/cmGeneratorTarget.h index 43fcb4a..ac2b96c 100644 --- a/Source/cmGeneratorTarget.h +++ b/Source/cmGeneratorTarget.h @@ -117,6 +117,11 @@ public: cmTarget const* headTarget, bool usage_requirements_only) const; + void ComputeLinkInterfaceLibraries(const std::string& config, + cmOptionalLinkInterface &iface, + cmTarget const* head, + bool usage_requirements_only) const; + /** Get the full path to the target according to the settings in its makefile and the configuration type. */ std::string GetFullPath(const std::string& config="", bool implib = false, @@ -388,6 +393,7 @@ private: typedef std::pair<std::string, bool> OutputNameKey; typedef std::map<OutputNameKey, std::string> OutputNameMapType; mutable OutputNameMapType OutputNameMap; + mutable bool PolicyWarnedCMP0022; public: std::vector<cmTarget const*> const& |