Skip to content
Snippets Groups Projects
Commit f49f1d29 authored by Brad King's avatar Brad King
Browse files

ENH: Simplify NOTFOUND variable check

When looking for NOTFOUND libraries, use the direct dependencies of a
target instead of all dependencies.  At least one target will trigger
the NOTFOUND error anyway because at least one must directly link it.
This removes another use of the old-style link line computation.
parent 434d07af
No related branches found
No related tags found
No related merge requests found
......@@ -947,7 +947,8 @@ void cmGlobalGenerator::CheckLocalGenerators()
for (cmTargets::const_iterator l = targets.begin();
l != targets.end(); l++)
{
const cmTarget::LinkLibraryVectorType& libs=l->second.GetLinkLibraries();
const cmTarget::LinkLibraryVectorType& libs =
l->second.GetOriginalLinkLibraries();
for(cmTarget::LinkLibraryVectorType::const_iterator lib = libs.begin();
lib != libs.end(); ++lib)
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment