| 202 | } |
| 203 | |
| 204 | std::string cmLocalUnixMakefileGenerator3::GetObjectOutputRoot( |
| 205 | cmStateEnums::IntermediateDirKind kind) const |
| 206 | { |
| 207 | if (this->UseShortObjectNames(kind)) { |
| 208 | return cmStrCat(this->GetCurrentBinaryDirectory(), '/', |
| 209 | this->GetGlobalGenerator()->GetShortBinaryOutputDir()); |
| 210 | } |
| 211 | return cmStrCat(this->GetCurrentBinaryDirectory(), "/CMakeFiles"); |
| 212 | } |
| 213 | |
| 214 | void cmLocalUnixMakefileGenerator3::ComputeHomeRelativeOutputPath() |
| 215 | { |
nothing calls this directly
no test coverage detected