mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-01 11:50:11 -05:00
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:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user