Skip to content

Commit

Permalink
SetupBLT: delete uppercase extensions from lists
Browse files Browse the repository at this point in the history
This commit deletes uppercased versions of extensions from the Fortran
file extension list because both the previous version of the file
extension matching macro (that did not use regexes) and the updated
version of that macro (which does use regexes) only match lowercase
extensions.
  • Loading branch information
goxberry authored and white238 committed Nov 9, 2021
1 parent 3e67d01 commit a4caddf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SetupBLT.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ if (NOT BLT_LOADED)
################################
set(BLT_C_FILE_EXTS ".cpp" ".hpp" ".cxx" ".hxx" ".c" ".h" ".cc" ".hh" ".inl" ".cu" ".cuh"
CACHE STRING "List of known file extensions used for C/CXX sources")
set(BLT_Fortran_FILE_EXTS ".F" ".f" ".f90" ".F90"
set(BLT_Fortran_FILE_EXTS ".f" ".f90"
CACHE STRING "List of known file extensions used for Fortran sources")
set(BLT_Python_FILE_EXTS ".py"
CACHE STRING "List of known file extensions used for Python sources")
Expand Down

0 comments on commit a4caddf

Please sign in to comment.