| 108 | } |
| 109 | |
| 110 | cmSourceGroup* cmSourceGroup::MatchChildrenFiles(std::string const& name) |
| 111 | { |
| 112 | if (this->MatchesFiles(name)) { |
| 113 | return this; |
| 114 | } |
| 115 | for (auto& group : this->Internal->GroupChildren) { |
| 116 | cmSourceGroup* result = group->MatchChildrenFiles(name); |
| 117 | if (result) { |
| 118 | return result; |
| 119 | } |
| 120 | } |
| 121 | return nullptr; |
| 122 | } |
| 123 | |
| 124 | cmSourceGroup const* cmSourceGroup::MatchChildrenFiles( |
| 125 | std::string const& name) const |
no test coverage detected