summaryrefslogtreecommitdiffstats
path: root/Source/cmLinkLineComputer.h
diff options
context:
space:
mode:
authorJustin Goshi <jgoshi@microsoft.com>2019-09-11 18:04:36 (GMT)
committerBrad King <brad.king@kitware.com>2019-09-18 18:00:37 (GMT)
commit7da17ef7973294a5207f879c0c5a3ed7ab727029 (patch)
tree445f8489269953b90c80f5930bf10a126932abcf /Source/cmLinkLineComputer.h
parentd4d0dd0f6a0f2287fd0fbdfad8c7210515af5eaa (diff)
downloadCMake-7da17ef7973294a5207f879c0c5a3ed7ab727029.zip
CMake-7da17ef7973294a5207f879c0c5a3ed7ab727029.tar.gz
CMake-7da17ef7973294a5207f879c0c5a3ed7ab727029.tar.bz2
cmLinkLineComputer: Add ComputeLinkLibraries overload with backtraces
Diffstat (limited to 'Source/cmLinkLineComputer.h')
-rw-r--r--Source/cmLinkLineComputer.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/Source/cmLinkLineComputer.h b/Source/cmLinkLineComputer.h
index a6e0ebf..f426976 100644
--- a/Source/cmLinkLineComputer.h
+++ b/Source/cmLinkLineComputer.h
@@ -45,8 +45,12 @@ public:
std::string ComputeFrameworkPath(cmComputeLinkInformation& cli,
std::string const& fwSearchFlag);
- virtual std::string ComputeLinkLibraries(cmComputeLinkInformation& cli,
- std::string const& stdLibString);
+ std::string ComputeLinkLibraries(cmComputeLinkInformation& cli,
+ std::string const& stdLibString);
+
+ virtual void ComputeLinkLibraries(
+ cmComputeLinkInformation& cli, std::string const& stdLibString,
+ std::vector<BT<std::string>>& linkLibraries);
virtual std::string GetLinkerLanguage(cmGeneratorTarget* target,
std::string const& config);