| 903 | } |
| 904 | |
| 905 | bool cmGeneratorTarget::HasExplicitObjectName(cmSourceFile const* file) const |
| 906 | { |
| 907 | const_cast<cmGeneratorTarget*>(this)->ComputeObjectMapping(); |
| 908 | auto it = this->ExplicitObjectName.find(file); |
| 909 | return it != this->ExplicitObjectName.end(); |
| 910 | } |
| 911 | |
| 912 | BTs<std::string> const* cmGeneratorTarget::GetLanguageStandardProperty( |
| 913 | std::string const& lang, std::string const& config) const |
no test coverage detected