summaryrefslogtreecommitdiffstats
path: root/Source/cmGeneratorTarget.cxx
diff options
context:
space:
mode:
authorJustin Goshi <jgoshi@microsoft.com>2019-09-11 18:07:43 (GMT)
committerBrad King <brad.king@kitware.com>2019-09-18 18:00:39 (GMT)
commit5d39e792ae769025866ab42d58d3363719eec5c1 (patch)
tree867a099b6369be3053c907cf00c3f6fd3af2948c /Source/cmGeneratorTarget.cxx
parent7da17ef7973294a5207f879c0c5a3ed7ab727029 (diff)
downloadCMake-5d39e792ae769025866ab42d58d3363719eec5c1.zip
CMake-5d39e792ae769025866ab42d58d3363719eec5c1.tar.gz
CMake-5d39e792ae769025866ab42d58d3363719eec5c1.tar.bz2
cmGeneratorTarget: Store backtrace for target LINK_DIRECTORIES property
Diffstat (limited to 'Source/cmGeneratorTarget.cxx')
-rw-r--r--Source/cmGeneratorTarget.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGeneratorTarget.cxx b/Source/cmGeneratorTarget.cxx
index e4659b7..76b72b5 100644
--- a/Source/cmGeneratorTarget.cxx
+++ b/Source/cmGeneratorTarget.cxx
@@ -3692,7 +3692,7 @@ void processLinkDirectories(cmGeneratorTarget const* tgt,
// in case projects set the LINK_DIRECTORIES property directly.
cmSystemTools::ConvertToUnixSlashes(entryDirectory);
if (uniqueDirectories.insert(entryDirectory).second) {
- directories.emplace_back(entryDirectory);
+ directories.emplace_back(entryDirectory, entry.Backtrace);
if (debugDirectories) {
usedDirectories += " * " + entryDirectory + "\n";
}