summaryrefslogtreecommitdiffstats
path: root/Source/cmMakefile.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2001-03-15 23:09:16 (GMT)
committerBrad King <brad.king@kitware.com>2001-03-15 23:09:16 (GMT)
commitbe4db9150c6b3bd8a6c39d48fa693a6209c34740 (patch)
tree033cb0942c8e0b7eb43afbfaef19ec403ab56083 /Source/cmMakefile.cxx
parentb9a8948ec879f2e6a9a2f6220bba061c44c8d4bb (diff)
downloadCMake-be4db9150c6b3bd8a6c39d48fa693a6209c34740.zip
CMake-be4db9150c6b3bd8a6c39d48fa693a6209c34740.tar.gz
CMake-be4db9150c6b3bd8a6c39d48fa693a6209c34740.tar.bz2
ENH: Added INCLUDE_REGULAR_EXPRESSION command to set regular expression used in dependency checking.
Diffstat (limited to 'Source/cmMakefile.cxx')
-rw-r--r--Source/cmMakefile.cxx3
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx
index 815421f..8248f5e 100644
--- a/Source/cmMakefile.cxx
+++ b/Source/cmMakefile.cxx
@@ -26,6 +26,9 @@
// default is not to be building executables
cmMakefile::cmMakefile()
{
+ // Setup the default include file regular expression.
+ m_IncludeFileRegularExpression = "^itk|^vtk|^vnl|^vcl|^f2c";
+
m_DefineFlags = " ";
m_MakefileGenerator = 0;
this->AddDefaultCommands();