ENH: minor fortran fixes
This commit is contained in:
parent
d2087dfe99
commit
2a1bbabb6b
|
@ -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 (
|
||||
|
|
Loading…
Reference in New Issue