diff options
author | Stephen Kelly <steveire@gmail.com> | 2013-09-11 20:28:32 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2013-09-11 20:28:32 (GMT) |
commit | 81d2793e920a90a627ca47bfd68f24dacf27ca72 (patch) | |
tree | 1d43f25025719ef2e2d40241cb8e959790291871 /Source | |
parent | 7c7cdf707396ad0191203dc90ea8ea28d9381b37 (diff) | |
download | CMake-81d2793e920a90a627ca47bfd68f24dacf27ca72.zip CMake-81d2793e920a90a627ca47bfd68f24dacf27ca72.tar.gz CMake-81d2793e920a90a627ca47bfd68f24dacf27ca72.tar.bz2 |
Add differing target property content to policy CMP0022 warning
List the contents of the INTERFACE_LINK_LIBRARIES and the old-style
property.
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmTarget.cxx | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/Source/cmTarget.cxx b/Source/cmTarget.cxx index 147c332..ce0d0f2 100644 --- a/Source/cmTarget.cxx +++ b/Source/cmTarget.cxx @@ -6443,7 +6443,13 @@ bool cmTarget::ComputeLinkInterface(const char* config, LinkInterface& iface, ->GetPolicyWarning(cmPolicies::CMP0022)) << "\n" << "Target \"" << this->GetName() << "\" has a " "INTERFACE_LINK_LIBRARIES property which differs from its " - << linkIfaceProp << " properties."; + << linkIfaceProp << " properties." + "\n" + "INTERFACE_LINK_LIBRARIES:\n " + << newExplicitLibraries + << "\n" + << linkIfaceProp << ":\n " + << explicitLibraries << "\n"; this->Makefile->IssueMessage(cmake::AUTHOR_WARNING, w.str()); } // Fall through |