| 541 | cmCPackDebGenerator::~cmCPackDebGenerator() = default; |
| 542 | |
| 543 | int cmCPackDebGenerator::InitializeInternal() |
| 544 | { |
| 545 | this->SetOptionIfNotSet("CPACK_PACKAGING_INSTALL_PREFIX", "/usr"); |
| 546 | if (this->GetOption("CPACK_SET_DESTDIR").IsOff()) { |
| 547 | this->SetOption("CPACK_SET_DESTDIR", "I_ON"); |
| 548 | } |
| 549 | return this->Superclass::InitializeInternal(); |
| 550 | } |
| 551 | |
| 552 | int cmCPackDebGenerator::PackageOnePack(std::string const& initialTopLevel, |
| 553 | std::string const& packageName) |
nothing calls this directly
no test coverage detected