| 2068 | } |
| 2069 | |
| 2070 | std::string cmGeneratorTarget::GetCompilePDBDirectory( |
| 2071 | std::string const& config) const |
| 2072 | { |
| 2073 | if (CompileInfo const* info = this->GetCompileInfo(config)) { |
| 2074 | return info->CompilePdbDir; |
| 2075 | } |
| 2076 | return ""; |
| 2077 | } |
| 2078 | |
| 2079 | std::vector<std::string> cmGeneratorTarget::GetAppleArchs( |
| 2080 | std::string const& config, cm::optional<std::string> lang) const |
no test coverage detected