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.
This commit is contained in:
Amitha Perera 2001-12-28 15:56:15 -05:00
parent 4ec2836634
commit 1859209282
1 changed files with 1 additions and 1 deletions

View File

@ -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;