Files
CMake/Tests/FortranModules/test_non_pp_include_module.f90
Brad King 36dc8d6d50 Ninja: Fix Fortran module deps in files INCLUDEd by preprocessed sources
If a preprocessed source also uses the Fortran `INCLUDE` directive,
search the original source file's directory.

Fixes: #25792
2024-03-19 07:56:13 -04:00

7 lines
140 B
Fortran

module non_pp_include_module
contains
subroutine non_pp_include_module_subroutine
print *, "Hello World!"
end subroutine
end module