From 18592092822ea7c450cafa3335c7ffc7537f4f5d Mon Sep 17 00:00:00 2001 From: Amitha Perera Date: Fri, 28 Dec 2001 15:56:15 -0500 Subject: [PATCH] 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. --- Source/cmMakefile.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx index c9cf6eead..7aadf2b7d 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;