| 304 | } |
| 305 | |
| 306 | char const* cmCPackIFWGenerator::GetPackagingInstallPrefix() |
| 307 | { |
| 308 | char const* defPrefix = this->cmCPackGenerator::GetPackagingInstallPrefix(); |
| 309 | |
| 310 | std::string tmpPref = defPrefix ? defPrefix : ""; |
| 311 | |
| 312 | if (this->Components.empty()) { |
| 313 | tmpPref += "packages/" + this->GetRootPackageName() + "/data"; |
| 314 | } |
| 315 | |
| 316 | this->SetOption("CPACK_IFW_PACKAGING_INSTALL_PREFIX", tmpPref); |
| 317 | |
| 318 | return this->GetOption("CPACK_IFW_PACKAGING_INSTALL_PREFIX")->c_str(); |
| 319 | } |
| 320 | |
| 321 | char const* cmCPackIFWGenerator::GetOutputExtension() |
| 322 | { |
nothing calls this directly
no test coverage detected