swig-fortran / swig

This fork of SWIG creates Fortran wrapper code from C++ headers.
http://www.swig.org
Other
42 stars 11 forks source link

Allow fortran file extention to be F90 instead of f90 #41

Closed aprokop closed 6 years ago

aprokop commented 6 years ago

Doxygen does not work with Fortran files that end with .f90. But it does work with .F90.

sethrj commented 6 years ago

Sounds like a Doxygen issue, not a SWIG issue?

aprokop commented 6 years ago

It is, but the workaround is to replace our f90 file extensions with F90. Not a big deal. I found the option you provided and I'll just use

set(SWIG_FORTRAN_EXTRA_FILE_EXTENSIONS "F90")# 

in ForTrilinos if you have no objections.

sethrj commented 6 years ago

Sure, sounds good.