| 3186 | } |
| 3187 | |
| 3188 | std::vector<std::string> cmTarget::GetAllFileSetNames() const |
| 3189 | { |
| 3190 | std::vector<std::string> result; |
| 3191 | |
| 3192 | for (auto const& it : this->impl->FileSets) { |
| 3193 | result.push_back(it.first); |
| 3194 | } |
| 3195 | |
| 3196 | return result; |
| 3197 | } |
| 3198 | |
| 3199 | std::vector<std::string> cmTarget::GetAllInterfaceFileSets() const |
| 3200 | { |
no test coverage detected