diff options
author | Brad King <brad.king@kitware.com> | 2020-02-10 21:16:56 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2020-02-10 21:17:03 (GMT) |
commit | 8752c1bd64e8eafd3aa73dae008b9a6efe9df3df (patch) | |
tree | 2bb7adc68219cd5c6e9f50a19cf041d41a16abe7 /Source/cmLocalVisualStudio7Generator.cxx | |
parent | 155540d89eb5ac00fd8ba03a9580de2382af6386 (diff) | |
parent | e75632843480aefc303303b85350ecddcc57cc5e (diff) | |
download | CMake-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.cxx | 4 |
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 << " "; } } } |