| 1246 | } |
| 1247 | |
| 1248 | static std::string GetEscapedPropertyIfValueNotNULL(char const* propertyValue) |
| 1249 | { |
| 1250 | return propertyValue |
| 1251 | ? cmLocalVisualStudio7GeneratorEscapeForXML(propertyValue) |
| 1252 | : std::string(); |
| 1253 | } |
| 1254 | |
| 1255 | void cmLocalVisualStudio7Generator::OutputDeploymentDebuggerTool( |
| 1256 | std::ostream& fout, std::string const& config, cmGeneratorTarget* target) |
no test coverage detected
searching dependent graphs…