| 472 | } |
| 473 | |
| 474 | void cmFindBase::FillUserGuessPath() |
| 475 | { |
| 476 | cmSearchPath& paths = this->LabeledPaths[PathLabel::Guess]; |
| 477 | |
| 478 | for (std::string const& p : this->UserGuessArgs) { |
| 479 | paths.AddUserPath(p); |
| 480 | } |
| 481 | paths.AddSuffixes(this->SearchPathSuffixes); |
| 482 | } |
| 483 | |
| 484 | cmFindBase::FindState cmFindBase::GetInitialState() |
| 485 | { |
no test coverage detected