summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorYves Starreveld <ystarrev@uwo.ca>2001-08-21 15:04:38 (GMT)
committerYves Starreveld <ystarrev@uwo.ca>2001-08-21 15:04:38 (GMT)
commita159c2d306368bddae574a83464cff5e00230369 (patch)
treea55588d92f9b87811cbd64afed30b354dec18c21 /Source
parent820a18a691899093433b38249be3ec669f17a583 (diff)
downloadCMake-a159c2d306368bddae574a83464cff5e00230369.zip
CMake-a159c2d306368bddae574a83464cff5e00230369.tar.gz
CMake-a159c2d306368bddae574a83464cff5e00230369.tar.bz2
Added support for .mm source files (ObjC++)
Diffstat (limited to 'Source')
-rw-r--r--Source/cmMakefile.cxx1
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx
index 633c5c9..9dd92e8 100644
--- a/Source/cmMakefile.cxx
+++ b/Source/cmMakefile.cxx
@@ -64,6 +64,7 @@ cmMakefile::cmMakefile()
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" );