| 1332 | } |
| 1333 | |
| 1334 | std::string cmGeneratorTarget::GetCompilePDBPath( |
| 1335 | std::string const& config) const |
| 1336 | { |
| 1337 | std::string dir = this->GetCompilePDBDirectory(config); |
| 1338 | std::string name = this->GetCompilePDBName(config); |
| 1339 | if (dir.empty() && !name.empty() && this->HaveWellDefinedOutputFiles()) { |
| 1340 | dir = this->GetPDBDirectory(config); |
| 1341 | } |
| 1342 | if (!dir.empty()) { |
| 1343 | dir += "/"; |
| 1344 | } |
| 1345 | return dir + name; |
| 1346 | } |
| 1347 | |
| 1348 | bool cmGeneratorTarget::HasSOName(std::string const& config) const |
| 1349 | { |
no test coverage detected