| 154 | } |
| 155 | |
| 156 | std::string cmFindPathCommand::FindFrameworkHeader() |
| 157 | { |
| 158 | for (std::string const& n : this->Names) { |
| 159 | for (std::string const& sp : this->SearchPaths) { |
| 160 | std::string fwPath = this->FindHeaderInFramework(n, sp); |
| 161 | if (!fwPath.empty()) { |
| 162 | return fwPath; |
| 163 | } |
| 164 | } |
| 165 | } |
| 166 | return ""; |
| 167 | } |
| 168 | |
| 169 | bool cmFindPath(std::vector<std::string> const& args, |
| 170 | cmExecutionStatus& status) |
no test coverage detected