| 182 | } |
| 183 | |
| 184 | std::string cmFastbuildTargetGenerator::GetScriptWorkingDir( |
| 185 | cmCustomCommandGenerator const& ccg) const |
| 186 | { |
| 187 | std::string workingDirectory = ccg.GetWorkingDirectory(); |
| 188 | if (workingDirectory.empty()) { |
| 189 | return this->LocalCommonGenerator->GetCurrentBinaryDirectory(); |
| 190 | } |
| 191 | return workingDirectory; |
| 192 | } |
| 193 | |
| 194 | std::string cmFastbuildTargetGenerator::GetScriptFilename( |
| 195 | std::string const& utilityTargetName) const |
nothing calls this directly
no test coverage detected