| 3136 | } |
| 3137 | |
| 3138 | cmFileSet const* cmTarget::GetFileSet(std::string const& name) const |
| 3139 | { |
| 3140 | auto it = this->impl->FileSets.find(name); |
| 3141 | return it == this->impl->FileSets.end() ? nullptr : &it->second; |
| 3142 | } |
| 3143 | |
| 3144 | cmFileSet* cmTarget::GetFileSet(std::string const& name) |
| 3145 | { |
no test coverage detected