| 2004 | } |
| 2005 | |
| 2006 | bool cmFindPackageCommand::FindPrefixedConfig() |
| 2007 | { |
| 2008 | std::vector<std::string> const& prefixes = this->SearchPaths; |
| 2009 | return std::any_of( |
| 2010 | prefixes.begin(), prefixes.end(), |
| 2011 | [this](std::string const& p) -> bool { return this->SearchPrefix(p); }); |
| 2012 | } |
| 2013 | |
| 2014 | bool cmFindPackageCommand::FindFrameworkConfig() |
| 2015 | { |
no test coverage detected