| 4679 | } |
| 4680 | |
| 4681 | std::string cmLocalGenerator::GetObjectOutputRoot( |
| 4682 | cmStateEnums::IntermediateDirKind kind) const |
| 4683 | { |
| 4684 | if (this->UseShortObjectNames(kind)) { |
| 4685 | return cmStrCat(this->GetCurrentBinaryDirectory(), '/', |
| 4686 | this->GlobalGenerator->GetShortBinaryOutputDir()); |
| 4687 | } |
| 4688 | return cmStrCat(this->GetCurrentBinaryDirectory(), "/CMakeFiles"); |
| 4689 | } |
| 4690 | |
| 4691 | bool cmLocalGenerator::AlwaysUsesCMFPaths() const |
| 4692 | { |
no test coverage detected