| 2841 | } |
| 2842 | |
| 2843 | void cmFindPackageCommand::FillPrefixesUserGuess() |
| 2844 | { |
| 2845 | cmSearchPath& paths = this->LabeledPaths[PathLabel::Guess]; |
| 2846 | |
| 2847 | for (std::string const& p : this->UserGuessArgs) { |
| 2848 | paths.AddUserPath(p); |
| 2849 | } |
| 2850 | if (this->DebugModeEnabled()) { |
| 2851 | std::string debugBuffer = |
| 2852 | "Paths specified by the find_package PATHS option.\n"; |
| 2853 | collectPathsForDebug(debugBuffer, paths); |
| 2854 | this->DebugBuffer = cmStrCat(this->DebugBuffer, debugBuffer); |
| 2855 | } |
| 2856 | } |
| 2857 | |
| 2858 | void cmFindPackageCommand::FillPrefixesUserHints() |
| 2859 | { |
no test coverage detected