ENH: fix NONE

This commit is contained in:
Bill Hoffman 2005-09-01 17:14:56 -04:00
parent 8a79c86a01
commit 52923844f5
1 changed files with 4 additions and 0 deletions

View File

@ -37,6 +37,10 @@ void cmGlobalUnixMakefileGenerator3
for(std::vector<std::string>::const_iterator l = languages.begin();
l != languages.end(); ++l)
{
if(*l == "NONE")
{
continue;
}
const char* lang = l->c_str();
std::string langComp = "CMAKE_";
langComp += lang;