| 500 | } |
| 501 | |
| 502 | std::vector<cmGeneratorTarget::AllConfigSource> |
| 503 | cmGeneratorTarget::GetAllConfigSources(SourceKind kind) const |
| 504 | { |
| 505 | std::vector<AllConfigSource> result; |
| 506 | for (AllConfigSource const& source : this->GetAllConfigSources()) { |
| 507 | if (source.Kind == kind) { |
| 508 | result.push_back(source); |
| 509 | } |
| 510 | } |
| 511 | return result; |
| 512 | } |
| 513 | |
| 514 | void cmGeneratorTarget::ComputeAllConfigCompileLanguages() const |
| 515 | { |
no test coverage detected