many fixes and cleanup and features

This commit is contained in:
Ken Martin
2001-04-24 16:49:12 -04:00
parent b5746484e4
commit 73f04d1409
36 changed files with 640 additions and 453 deletions

View File

@@ -24,19 +24,19 @@ bool cmWrapExcludeFilesCommand::Invoke(std::vector<std::string>& args)
return false;
}
cmMakefile::ClassMap &Classes = m_Makefile->GetClasses();
cmMakefile::SourceMap &Classes = m_Makefile->GetSources();
for(std::vector<std::string>::iterator j = args.begin();
j != args.end(); ++j)
{
for(cmMakefile::ClassMap::iterator l = Classes.begin();
for(cmMakefile::SourceMap::iterator l = Classes.begin();
l != Classes.end(); l++)
{
for(std::vector<cmClassFile>::iterator i = l->second.begin();
for(std::vector<cmSourceFile>::iterator i = l->second.begin();
i != l->second.end(); i++)
{
if(i->m_ClassName == (*j))
if(i->GetSourceName() == (*j))
{
i->m_WrapExclude = true;
i->SetWrapExclude(true);
}
}
}