diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2002-03-14 21:04:02 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2002-03-14 21:04:02 (GMT) |
commit | 93474efd8b706718a65713dd2841d7e1c8271c7e (patch) | |
tree | 30cd32a506e27bdd4f1ec140712e542e454aad19 /Source/cmMakefile.cxx | |
parent | b59987eed9f5a67b6672d913501e3ce6495f1465 (diff) | |
download | CMake-93474efd8b706718a65713dd2841d7e1c8271c7e.zip CMake-93474efd8b706718a65713dd2841d7e1c8271c7e.tar.gz CMake-93474efd8b706718a65713dd2841d7e1c8271c7e.tar.bz2 |
ENH: add .in as a header file type, as it can not be compiled
Diffstat (limited to 'Source/cmMakefile.cxx')
-rw-r--r-- | Source/cmMakefile.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx index b3947bc..6dd3caf 100644 --- a/Source/cmMakefile.cxx +++ b/Source/cmMakefile.cxx @@ -44,6 +44,7 @@ cmMakefile::cmMakefile() m_HeaderFileExtensions.push_back( "h" ); m_HeaderFileExtensions.push_back( "txx" ); + m_HeaderFileExtensions.push_back( "in" ); m_DefineFlags = " "; m_MakefileGenerator = 0; |