| 2021 | } |
| 2022 | |
| 2023 | bool cmFindPackageCommand::FindAppBundleConfig() |
| 2024 | { |
| 2025 | std::vector<std::string> const& prefixes = this->SearchPaths; |
| 2026 | return std::any_of(prefixes.begin(), prefixes.end(), |
| 2027 | [this](std::string const& p) -> bool { |
| 2028 | return this->SearchAppBundlePrefix(p); |
| 2029 | }); |
| 2030 | } |
| 2031 | |
| 2032 | bool cmFindPackageCommand::FindEnvironmentConfig() |
| 2033 | { |
no test coverage detected