Newbie question: How did fpm figure the dependency graph?

You are looking for the source parsing module in https://github.com/fortran-lang/fpm/blob/main/src/fpm_source_parsing.f90. The dependency graph in https://github.com/fortran-lang/fpm/blob/main/src/fpm/dependency.f90 is only for fetching full projects not for resolving their module dependencies.

1 Like