| 5467 | } |
| 5468 | |
| 5469 | std::string cmGeneratorTarget::GetPDBDirectory(std::string const& config) const |
| 5470 | { |
| 5471 | if (OutputInfo const* info = this->GetOutputInfo(config)) { |
| 5472 | // Return the directory in which the target will be built. |
| 5473 | return info->PdbDir; |
| 5474 | } |
| 5475 | return ""; |
| 5476 | } |
| 5477 | |
| 5478 | bool cmGeneratorTarget::HasImplibGNUtoMS(std::string const& config) const |
| 5479 | { |
no test coverage detected