diff options
author | Robert Maynard <robert.maynard@kitware.com> | 2016-10-13 12:57:31 (GMT) |
---|---|---|
committer | Robert Maynard <robert.maynard@kitware.com> | 2016-11-14 16:36:45 (GMT) |
commit | 115269a86c3116198f4de7c690fef21ec38767ac (patch) | |
tree | 389ed196b5cd401570d8e3e632e2ed5dc7f861ab | |
parent | 5dec403103990f766f458ff79987234e3b945787 (diff) | |
download | CMake-115269a86c3116198f4de7c690fef21ec38767ac.zip CMake-115269a86c3116198f4de7c690fef21ec38767ac.tar.gz CMake-115269a86c3116198f4de7c690fef21ec38767ac.tar.bz2 |
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.
-rw-r--r-- | Source/cmLinkLineComputer.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmLinkLineComputer.h b/Source/cmLinkLineComputer.h index 97a5d1b..bb13717 100644 --- a/Source/cmLinkLineComputer.h +++ b/Source/cmLinkLineComputer.h @@ -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); |