CUDA: Refactor cmLinkLineComputer to allow for better derived children.

Derived children of cmLinkLineComputer need to be able to use member
variables such as OutputConverter and the previously private methods.
This commit is contained in:
Robert Maynard
2016-10-13 08:57:31 -04:00
parent 5dec403103
commit 115269a86c

View File

@@ -33,10 +33,10 @@ public:
std::string ComputeFrameworkPath(cmComputeLinkInformation& cli,
std::string const& fwSearchFlag);
std::string ComputeLinkLibraries(cmComputeLinkInformation& cli,
std::string const& stdLibString);
virtual std::string ComputeLinkLibraries(cmComputeLinkInformation& cli,
std::string const& stdLibString);
private:
protected:
std::string ComputeLinkLibs(cmComputeLinkInformation& cli);
std::string ComputeRPath(cmComputeLinkInformation& cli);