| 2012 | } |
| 2013 | |
| 2014 | bool cmFindPackageCommand::FindFrameworkConfig() |
| 2015 | { |
| 2016 | std::vector<std::string> const& prefixes = this->SearchPaths; |
| 2017 | return std::any_of(prefixes.begin(), prefixes.end(), |
| 2018 | [this](std::string const& p) -> bool { |
| 2019 | return this->SearchFrameworkPrefix(p); |
| 2020 | }); |
| 2021 | } |
| 2022 | |
| 2023 | bool cmFindPackageCommand::FindAppBundleConfig() |
| 2024 | { |
no test coverage detected