summaryrefslogtreecommitdiffstats
path: root/Source/cmMakefile.cxx
diff options
context:
space:
mode:
authorAmitha Perera <perera@cs.rpi.edu>2001-12-28 20:56:15 (GMT)
committerAmitha Perera <perera@cs.rpi.edu>2001-12-28 20:56:15 (GMT)
commit18592092822ea7c450cafa3335c7ffc7537f4f5d (patch)
treef92e3f8beea2798593750d490770b3b74951ae0c /Source/cmMakefile.cxx
parent4ec2836634c55c0ea5a9f3340cf7b63340ccaa0f (diff)
downloadCMake-18592092822ea7c450cafa3335c7ffc7537f4f5d.zip
CMake-18592092822ea7c450cafa3335c7ffc7537f4f5d.tar.gz
CMake-18592092822ea7c450cafa3335c7ffc7537f4f5d.tar.bz2
BUG: .txx are not source files. They contain template code which can only
be compiled when included in a regular .cxx file. By themselves, they cause do not cause code to be generated.
Diffstat (limited to 'Source/cmMakefile.cxx')
-rw-r--r--Source/cmMakefile.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx
index c9cf6ee..7aadf2b 100644
--- a/Source/cmMakefile.cxx
+++ b/Source/cmMakefile.cxx
@@ -61,13 +61,13 @@ cmMakefile::cmMakefile()
// Source and header file extensions that we can handle
m_SourceFileExtensions.push_back( "cxx" );
m_SourceFileExtensions.push_back( "cpp" );
- m_SourceFileExtensions.push_back( "txx" );
m_SourceFileExtensions.push_back( "c" );
m_SourceFileExtensions.push_back( "M" );
m_SourceFileExtensions.push_back( "m" );
m_SourceFileExtensions.push_back( "mm" );
m_HeaderFileExtensions.push_back( "h" );
+ m_HeaderFileExtensions.push_back( "txx" );
m_DefineFlags = " ";
m_MakefileGenerator = 0;