Merge topic 'CPack-MoreComponentControls'

6d94ea3 CPack  use IsOn when it's better than IsSet
This commit is contained in:
Brad King 2010-12-16 13:59:45 -05:00 committed by CMake Topic Stage
commit ceae8b1062
4 changed files with 11 additions and 4 deletions

View File

@ -285,7 +285,7 @@ bool cmCPackArchiveGenerator::SupportsComponentInstallation() const {
// The Component installation support should only
// be activated if explicitly requested by the user
// (for backward compatibility reason)
if (IsSet("CPACK_ARCHIVE_COMPONENT_INSTALL"))
if (IsOn("CPACK_ARCHIVE_COMPONENT_INSTALL"))
{
return true;
}

View File

@ -1070,7 +1070,13 @@ bool cmCPackGenerator::IsSet(const char* name) const
}
//----------------------------------------------------------------------
const char* cmCPackGenerator::GetOption(const char* op)
bool cmCPackGenerator::IsOn(const char* name) const
{
return cmSystemTools::IsOn(GetOption(name));
}
//----------------------------------------------------------------------
const char* cmCPackGenerator::GetOption(const char* op) const
{
const char* ret = this->MakefileMap->GetDefinition(op);
if(!ret)

View File

@ -88,8 +88,9 @@ public:
//! Set and get the options
void SetOption(const char* op, const char* value);
void SetOptionIfNotSet(const char* op, const char* value);
const char* GetOption(const char* op);
const char* GetOption(const char* op) const;
bool IsSet(const char* name) const;
bool IsOn(const char* name) const;
//! Set all the variables
int SetCMakeRoot();

View File

@ -108,7 +108,7 @@ int cmCPackRPMGenerator::PackageFiles()
bool cmCPackRPMGenerator::SupportsComponentInstallation() const
{
if (IsSet("CPACK_RPM_COMPONENT_INSTALL"))
if (IsOn("CPACK_RPM_COMPONENT_INSTALL"))
{
return true;
}