ENH: Generate compile lines for .m, .M, and .mm files (ObjC and ObjC++)

This commit is contained in:
Yves Starreveld 2001-08-31 21:10:46 -04:00
parent 3091e9b8f6
commit 7aa0d0d888
1 changed files with 2 additions and 1 deletions

View File

@ -1399,7 +1399,8 @@ void cmUnixMakefileGenerator::OutputSourceObjectBuildRules(std::ostream& fout)
rules.insert(shortName);
fout << shortName.c_str() << ".o : " << sourceName.c_str() << "\n";
std::string ext = source->GetSourceExtension();
if ( ext == "cxx" || ext == "cc" || ext == "cpp" || ext == "C" )
if ( ext == "cxx" || ext == "cc" || ext == "cpp" || ext == "C" ||
ext =="m" || ext == "M" || ext == "mm")
{
fout << "\t${CMAKE_CXX_COMPILER} ${CMAKE_CXXFLAGS} " << exportsDef.c_str()
<< (shared? "${CMAKE_SHLIB_CFLAGS} ":"") << "${INCLUDE_FLAGS} -c $< -o $@\n\n";