diff options
author | Justin Goshi <jgoshi@microsoft.com> | 2019-09-11 18:07:43 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2019-09-18 18:00:39 (GMT) |
commit | 5d39e792ae769025866ab42d58d3363719eec5c1 (patch) | |
tree | 867a099b6369be3053c907cf00c3f6fd3af2948c /Source | |
parent | 7da17ef7973294a5207f879c0c5a3ed7ab727029 (diff) | |
download | CMake-5d39e792ae769025866ab42d58d3363719eec5c1.zip CMake-5d39e792ae769025866ab42d58d3363719eec5c1.tar.gz CMake-5d39e792ae769025866ab42d58d3363719eec5c1.tar.bz2 |
cmGeneratorTarget: Store backtrace for target LINK_DIRECTORIES property
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmGeneratorTarget.cxx | 2 |
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"; } |