| 4408 | } |
| 4409 | |
| 4410 | std::vector<std::string> cmGeneratorTarget::GetGeneratedISPCObjects( |
| 4411 | std::string const& config) const |
| 4412 | { |
| 4413 | std::string config_upper; |
| 4414 | if (!config.empty()) { |
| 4415 | config_upper = cmSystemTools::UpperCase(config); |
| 4416 | } |
| 4417 | auto iter = this->ISPCGeneratedObjects.find(config_upper); |
| 4418 | if (iter == this->ISPCGeneratedObjects.end()) { |
| 4419 | return std::vector<std::string>{}; |
| 4420 | } |
| 4421 | return iter->second; |
| 4422 | } |
| 4423 | |
| 4424 | std::string cmGeneratorTarget::GetFrameworkVersion() const |
| 4425 | { |
no test coverage detected