summaryrefslogtreecommitdiffstats
path: root/Source/cmLocalVisualStudio7Generator.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/cmLocalVisualStudio7Generator.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/cmLocalVisualStudio7Generator.cxx')
-rw-r--r--Source/cmLocalVisualStudio7Generator.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmLocalVisualStudio7Generator.cxx b/Source/cmLocalVisualStudio7Generator.cxx
index 1a6b7b2..9aa3991 100644
--- a/Source/cmLocalVisualStudio7Generator.cxx
+++ b/Source/cmLocalVisualStudio7Generator.cxx
@@ -1254,11 +1254,11 @@ void cmLocalVisualStudio7GeneratorInternals::OutputLibraries(
for (auto const& lib : libs) {
if (lib.IsPath) {
std::string rel =
- lg->MaybeConvertToRelativePath(currentBinDir, lib.Value);
+ lg->MaybeConvertToRelativePath(currentBinDir, lib.Value.Value);
fout << lg->ConvertToXMLOutputPath(rel) << " ";
} else if (!lib.Target ||
lib.Target->GetType() != cmStateEnums::INTERFACE_LIBRARY) {
- fout << lib.Value << " ";
+ fout << lib.Value.Value << " ";
}
}
}