COMP: fix warnings

This commit is contained in:
Ken Martin 2007-06-25 12:50:29 -04:00
parent c1467ff991
commit 3bf92ad4b4
2 changed files with 8 additions and 0 deletions

View File

@ -152,6 +152,10 @@ bool cmGetPropertyCommand::InitialPass(
}
}
break;
case cmProperty::VARIABLE:
case cmProperty::CACHED_VARIABLE:
// not handled by GetProperty
break;
}
this->Makefile->AddDefinition(args[0].c_str(), output.c_str());

View File

@ -199,6 +199,10 @@ bool cmSetPropertiesCommand::InitialPass(
}
}
break;
case cmProperty::VARIABLE:
case cmProperty::CACHED_VARIABLE:
// not handled by SetProperty
break;
}
return true;