| 1703 | } |
| 1704 | |
| 1705 | bool cmCPackGenerator::WantsComponentInstallation() const |
| 1706 | { |
| 1707 | return (!this->IsOn("CPACK_MONOLITHIC_INSTALL") && |
| 1708 | this->SupportsComponentInstallation() |
| 1709 | // check that we have at least one group or component |
| 1710 | && (!this->ComponentGroups.empty() || !this->Components.empty())); |
| 1711 | } |
| 1712 | |
| 1713 | cmCPackInstallationType* cmCPackGenerator::GetInstallationType( |
| 1714 | std::string const& projectName, std::string const& name) |
no test coverage detected