BUG: Fix Fortran implicit dependency include path
The previous change to Source/cmDependsFortran.cxx while refactoring implicit dependency scanning configuration rules completely broke loading of the include file search path while scanning Fortran dependencies. This adds the line that should have been added during the previous change to load the include path correctly.
This commit is contained in:
parent
de3dedb4ea
commit
66f2edbe63
|
@ -141,6 +141,9 @@ cmDependsFortran
|
|||
cmDepends(lg),
|
||||
Internal(new cmDependsFortranInternals)
|
||||
{
|
||||
// Configure the include file search path.
|
||||
this->SetIncludePathFromLanguage("Fortran");
|
||||
|
||||
// Get the list of definitions.
|
||||
std::vector<std::string> definitions;
|
||||
cmMakefile* mf = this->LocalGenerator->GetMakefile();
|
||||
|
|
Loading…
Reference in New Issue