summaryrefslogtreecommitdiffstats
path: root/Source/cmMakefile.cxx
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2003-03-13 17:48:52 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2003-03-13 17:48:52 (GMT)
commitce23446000ee5954d8810e70ea39165a8460e016 (patch)
treef069d5f4df4997f7c0755be413e5407872c6f81a /Source/cmMakefile.cxx
parent84d15bf00e5986464ebd668c7250c965e2973e14 (diff)
downloadCMake-ce23446000ee5954d8810e70ea39165a8460e016.zip
CMake-ce23446000ee5954d8810e70ea39165a8460e016.tar.gz
CMake-ce23446000ee5954d8810e70ea39165a8460e016.tar.bz2
Fix regular expressions
Diffstat (limited to 'Source/cmMakefile.cxx')
-rw-r--r--Source/cmMakefile.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx
index b5f7ffb..8979cce 100644
--- a/Source/cmMakefile.cxx
+++ b/Source/cmMakefile.cxx
@@ -60,8 +60,8 @@ cmMakefile::cmMakefile()
m_LocalGenerator = 0;
this->AddSourceGroup("", "^.*$");
this->AddSourceGroup("Source Files",
- "\\.(C|M|c|c++|cc|cpp|cxx|m|mm|rc|def|r|odl|idl|hpj|bat)$");
- this->AddSourceGroup("Header Files", "\\.(h|h++|hm|hpp|hxx|in|txx|inl)$");
+ "\\.(C|M|c|c\\+\\+|cc|cpp|cxx|m|mm|rc|def|r|odl|idl|hpj|bat)$");
+ this->AddSourceGroup("Header Files", "\\.(h|h\\+\\+|hm|hpp|hxx|in|txx|inl)$");
this->AddDefaultDefinitions();
}