BUG: InitializeFromParent should copy include file regular expressions.

This commit is contained in:
Brad King 2005-07-27 17:23:39 -04:00
parent 80802c21b6
commit 6873773487

View File

@ -812,6 +812,10 @@ void cmMakefile::InitializeFromParent()
// the initial project name // the initial project name
this->m_ProjectName = parent->m_ProjectName; this->m_ProjectName = parent->m_ProjectName;
// Copy include regular expressions.
this->m_IncludeFileRegularExpression = parent->m_IncludeFileRegularExpression;
this->m_ComplainFileRegularExpression = parent->m_ComplainFileRegularExpression;
} }
void cmMakefile::ConfigureSubDirectory(cmLocalGenerator *lg2) void cmMakefile::ConfigureSubDirectory(cmLocalGenerator *lg2)