| 1384 | } |
| 1385 | |
| 1386 | std::string cmCPackWIXGenerator::RelativePathWithoutComponentPrefix( |
| 1387 | std::string const& path) |
| 1388 | { |
| 1389 | if (this->Components.empty()) { |
| 1390 | return path; |
| 1391 | } |
| 1392 | |
| 1393 | std::string::size_type pos = path.find('/'); |
| 1394 | |
| 1395 | return path.substr(pos + 1); |
| 1396 | } |
| 1397 | |
| 1398 | void cmCPackWIXGenerator::InjectXmlNamespaces(cmWIXSourceWriter& sourceWriter) |
| 1399 | { |
no test coverage detected