summaryrefslogtreecommitdiff
path: root/Source/cmLinkLineComputer.h
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2016-10-08 12:21:39 +0200
committerStephen Kelly <steveire@gmail.com>2016-10-10 20:38:59 +0200
commit4134030434ea88024ef46f9f00b19513fc3cec4c (patch)
tree2eab60a4a8704dff0b8cdec8dfc8ccd4fd3288b8 /Source/cmLinkLineComputer.h
parentf03d446e967af91460ff31eb52d840983b3d8cec (diff)
downloadcmake-4134030434ea88024ef46f9f00b19513fc3cec4c.tar.gz
cmLinkLineComputer: Extract link libraries computation from cmLocalGenerator
Hide some methods which no longer need to be public.
Diffstat (limited to 'Source/cmLinkLineComputer.h')
-rw-r--r--Source/cmLinkLineComputer.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/Source/cmLinkLineComputer.h b/Source/cmLinkLineComputer.h
index f72368abee..1fb9b2415a 100644
--- a/Source/cmLinkLineComputer.h
+++ b/Source/cmLinkLineComputer.h
@@ -22,18 +22,20 @@ public:
virtual std::string ConvertToLinkReference(std::string const& input) const;
- std::string ComputeLinkLibs(cmComputeLinkInformation& cli);
-
std::string ComputeLinkPath(cmComputeLinkInformation& cli,
std::string const& libPathFlag,
std::string const& libPathTerminator);
- std::string ComputeRPath(cmComputeLinkInformation& cli);
-
std::string ComputeFrameworkPath(cmComputeLinkInformation& cli,
std::string const& fwSearchFlag);
+ std::string ComputeLinkLibraries(cmComputeLinkInformation& cli,
+ std::string const& stdLibString);
+
private:
+ std::string ComputeLinkLibs(cmComputeLinkInformation& cli);
+ std::string ComputeRPath(cmComputeLinkInformation& cli);
+
std::string ConvertToOutputFormat(std::string const& input);
std::string ConvertToOutputForExisting(std::string const& input);