ENH: minor fortran fixes

This commit is contained in:
Bill Hoffman 2004-08-11 16:37:56 -04:00
parent d2087dfe99
commit 2a1bbabb6b
1 changed files with 4 additions and 1 deletions

View File

@ -1098,7 +1098,10 @@ cmSystemTools::FileFormat cmSystemTools::GetFileFormat(const char* cext)
if (
ext == "f" || ext == ".f" ||
ext == "F" || ext == ".F" ||
ext == "f77" || ext == ".f77"
ext == "f77" || ext == ".f77" ||
ext == "f90" || ext == ".f90" ||
ext == "for" || ext == ".for" ||
ext == "f95" || ext == ".f95"
) { return cmSystemTools::FORTRAN_FILE_FORMAT; }
if ( ext == "java" || ext == ".java" ) { return cmSystemTools::JAVA_FILE_FORMAT; }
if (