| 462 | } |
| 463 | |
| 464 | std::string cmCPackIFWGenerator::GetComponentInstallSuffix( |
| 465 | std::string const& componentName) |
| 466 | { |
| 467 | std::string const prefix = "packages/"; |
| 468 | std::string const suffix = "/data"; |
| 469 | |
| 470 | if (this->componentPackageMethod == this->ONE_PACKAGE) { |
| 471 | return cmStrCat(prefix, this->GetRootPackageName(), suffix); |
| 472 | } |
| 473 | |
| 474 | return prefix + |
| 475 | this->GetComponentPackageName(&this->Components[componentName]) + suffix; |
| 476 | } |
| 477 | |
| 478 | std::string cmCPackIFWGenerator::GetComponentInstallDirNameSuffix( |
| 479 | std::string const& componentName) |
nothing calls this directly
no test coverage detected