diff options
Diffstat (limited to 'Source/cmGlobalXCodeGenerator.cxx')
-rw-r--r-- | Source/cmGlobalXCodeGenerator.cxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Source/cmGlobalXCodeGenerator.cxx b/Source/cmGlobalXCodeGenerator.cxx index f1a2b71..ed1af64 100644 --- a/Source/cmGlobalXCodeGenerator.cxx +++ b/Source/cmGlobalXCodeGenerator.cxx @@ -2105,11 +2105,12 @@ void cmGlobalXCodeGenerator } // Compute the link library and directory information. - cmComputeLinkInformation cli(cmtarget, configName); - if(!cli.Compute()) + cmComputeLinkInformation* pcli = cmtarget->GetLinkInformation(configName); + if(!pcli) { continue; } + cmComputeLinkInformation& cli = *pcli; // Add dependencies directly on library files. { |