| 476 | } |
| 477 | |
| 478 | std::string cmCPackIFWGenerator::GetComponentInstallDirNameSuffix( |
| 479 | std::string const& componentName) |
| 480 | { |
| 481 | std::string const prefix = "packages/"; |
| 482 | std::string const suffix = "/data"; |
| 483 | |
| 484 | if (this->componentPackageMethod == this->ONE_PACKAGE) { |
| 485 | return cmStrCat(prefix, this->GetRootPackageName(), suffix); |
| 486 | } |
| 487 | |
| 488 | return prefix + |
| 489 | this->GetSanitizedDirOrFileName( |
| 490 | this->GetComponentPackageName(&this->Components[componentName])) + |
| 491 | suffix; |
| 492 | } |
| 493 | |
| 494 | cmCPackComponent* cmCPackIFWGenerator::GetComponent( |
| 495 | std::string const& projectName, std::string const& componentName) |
nothing calls this directly
no test coverage detected