File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,9 @@ function(llvm_singlesource)
33
33
if (DEFINED Source )
34
34
set (sources ${Source} )
35
35
else ()
36
- file (GLOB sources *.c *.cpp *.cc *.f *.F *.f90 *.F90 *.f03 *.F03 *.f08 *.F08 )
36
+ file (GLOB sources
37
+ *.c *.cpp *.cc
38
+ *.for *.FOR *.fpp *.FPP *.[fF] *.[fF]90 *.[fF]95 *.[fF]03 *.[fF]08 )
37
39
endif ()
38
40
foreach (source ${sources} )
39
41
basename (name ${source} )
@@ -51,7 +53,9 @@ endfunction()
51
53
function (llvm_multisource target )
52
54
set (sources ${ARGN} )
53
55
if (NOT sources )
54
- file (GLOB sources *.c *.cpp *.cc *.f *.F *.f90 *.F90 *.f03 *.F03 *.f08 *.F08 )
56
+ file (GLOB sources
57
+ *.c *.cpp *.cc
58
+ *.for *.FOR *.fpp *.FPP *.[fF] *.[fF]90 *.[fF]95 *.[fF]03 *.[fF]08 )
55
59
endif ()
56
60
57
61
llvm_test_executable_no_test (${target} ${sources} )
You can’t perform that action at this time.
0 commit comments