summaryrefslogtreecommitdiffstats
path: root/Source/cmGlobalXCodeGenerator.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2020-02-10 21:16:56 (GMT)
committerBrad King <brad.king@kitware.com>2020-02-10 21:17:03 (GMT)
commit8752c1bd64e8eafd3aa73dae008b9a6efe9df3df (patch)
tree2bb7adc68219cd5c6e9f50a19cf041d41a16abe7 /Source/cmGlobalXCodeGenerator.cxx
parent155540d89eb5ac00fd8ba03a9580de2382af6386 (diff)
parente75632843480aefc303303b85350ecddcc57cc5e (diff)
downloadCMake-8752c1bd64e8eafd3aa73dae008b9a6efe9df3df.zip
CMake-8752c1bd64e8eafd3aa73dae008b9a6efe9df3df.tar.gz
CMake-8752c1bd64e8eafd3aa73dae008b9a6efe9df3df.tar.bz2
Merge branch 'backport-3.16-link-line-backtrace'
Diffstat (limited to 'Source/cmGlobalXCodeGenerator.cxx')
-rw-r--r--Source/cmGlobalXCodeGenerator.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmGlobalXCodeGenerator.cxx b/Source/cmGlobalXCodeGenerator.cxx
index 3d5c9c4..7ec4e65 100644
--- a/Source/cmGlobalXCodeGenerator.cxx
+++ b/Source/cmGlobalXCodeGenerator.cxx
@@ -2817,11 +2817,11 @@ void cmGlobalXCodeGenerator::AddDependAndLinkInformation(cmXCodeObject* target)
linkLibs += sep;
sep = " ";
if (libName.IsPath) {
- linkLibs += this->XCodeEscapePath(libName.Value);
+ linkLibs += this->XCodeEscapePath(libName.Value.Value);
} else if (!libName.Target ||
libName.Target->GetType() !=
cmStateEnums::INTERFACE_LIBRARY) {
- linkLibs += libName.Value;
+ linkLibs += libName.Value.Value;
}
if (libName.Target && !libName.Target->IsImported()) {
target->AddDependTarget(configName, libName.Target->GetName());