| 106 | } |
| 107 | |
| 108 | std::string cmLocalCommonGenerator::GetTargetDirectory( |
| 109 | cmGeneratorTarget const* target, |
| 110 | cmStateEnums::IntermediateDirKind kind) const |
| 111 | { |
| 112 | if (target->GetUseShortObjectNames(kind)) { |
| 113 | return this->ComputeShortTargetDirectory(target); |
| 114 | } |
| 115 | return this->ComputeLongTargetDirectory(target); |
| 116 | } |
| 117 | |
| 118 | void cmLocalCommonGenerator::ComputeObjectFilenames( |
| 119 | std::map<cmSourceFile const*, cmObjectLocations>& mapping, |
nothing calls this directly
no test coverage detected