summaryrefslogtreecommitdiffstats
path: root/Source/cmMakefile.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2001-06-21 19:02:52 (GMT)
committerBrad King <brad.king@kitware.com>2001-06-21 19:02:52 (GMT)
commitcf829929649c3dc7871e653de33580679c2db558 (patch)
tree67d62b23de64b1845c7601a845d53591c96d8e32 /Source/cmMakefile.cxx
parent8ffe832e9bc22deddef38eed1c19fe437b5d031f (diff)
downloadCMake-cf829929649c3dc7871e653de33580679c2db558.zip
CMake-cf829929649c3dc7871e653de33580679c2db558.tar.gz
CMake-cf829929649c3dc7871e653de33580679c2db558.tar.bz2
ENH: Extended INCLUDE_REGULAR_EXPRESSION to allow selective complaints about missing dependencies.
Diffstat (limited to 'Source/cmMakefile.cxx')
-rw-r--r--Source/cmMakefile.cxx7
1 files changed, 4 insertions, 3 deletions
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx
index bca29eb..eedeb45 100644
--- a/Source/cmMakefile.cxx
+++ b/Source/cmMakefile.cxx
@@ -53,9 +53,10 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
// default is not to be building executables
cmMakefile::cmMakefile()
{
- // Setup the default include file regular expression.
- // Should be changed to something like "\\.(h|hh|hpp|hxx)$" or "^.*$"
- m_IncludeFileRegularExpression = "^itk|^vtk|^vnl|^vcl|^f2c";
+ // Setup the default include file regular expression (match everything).
+ m_IncludeFileRegularExpression = "^.*$";
+ // Setup the default include complaint regular expression (match nothing).
+ m_ComplainFileRegularExpression = "^$";
m_DefineFlags = " ";
m_MakefileGenerator = 0;