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:
Brad King 2009-02-24 14:32:25 -05:00
parent de3dedb4ea
commit 66f2edbe63
1 changed files with 3 additions and 0 deletions

View File

@ -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();