| 94 | } |
| 95 | |
| 96 | std::string cmLocalCommonGenerator::ComputeLongTargetDirectory( |
| 97 | cmGeneratorTarget const* target) const |
| 98 | { |
| 99 | std::string dir = target->GetName(); |
| 100 | #if defined(__VMS) |
| 101 | dir += "_dir"; |
| 102 | #else |
| 103 | dir += ".dir"; |
| 104 | #endif |
| 105 | return dir; |
| 106 | } |
| 107 | |
| 108 | std::string cmLocalCommonGenerator::GetTargetDirectory( |
| 109 | cmGeneratorTarget const* target, |
no test coverage detected