diff options
Diffstat (limited to 'Source/cmLocalUnixMakefileGenerator3.cxx')
-rw-r--r-- | Source/cmLocalUnixMakefileGenerator3.cxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator3.cxx b/Source/cmLocalUnixMakefileGenerator3.cxx index 0e40c04..ff8ba8b 100644 --- a/Source/cmLocalUnixMakefileGenerator3.cxx +++ b/Source/cmLocalUnixMakefileGenerator3.cxx @@ -322,9 +322,10 @@ void cmLocalUnixMakefileGenerator3::WriteLocalMakefile() lo->second.begin(); ei != lo->second.end(); ++ei) { if(ei->Language == "C" || - ei->Language == "CXX") + ei->Language == "CXX" || + ei->Language == "Fortran") { - // Right now, C and C++ have both a preprocessor and the + // Right now, C, C++ and Fortran have both a preprocessor and the // ability to generate assembly code lang_has_preprocessor = true; lang_has_assembly = true; |