| 111 | } |
| 112 | |
| 113 | std::string cmLocalVisualStudioGenerator::GetObjectOutputRoot( |
| 114 | cmStateEnums::IntermediateDirKind kind) const |
| 115 | { |
| 116 | if (this->UseShortObjectNames(kind)) { |
| 117 | return cmStrCat(this->GetCurrentBinaryDirectory(), '/', |
| 118 | this->GetGlobalGenerator()->GetShortBinaryOutputDir()); |
| 119 | } |
| 120 | return this->GetCurrentBinaryDirectory(); |
| 121 | } |
| 122 | |
| 123 | bool cmLocalVisualStudioGenerator::AlwaysUsesCMFPaths() const |
| 124 | { |
nothing calls this directly
no test coverage detected