From a81a8263a5932c1635e678d3b07305195bf1fa7c Mon Sep 17 00:00:00 2001 From: Brad King Date: Wed, 26 Jan 2005 16:18:22 -0500 Subject: ENH: Added hook into Fortran dependency scanner. --- Source/CMakeLists.txt | 5 +++++ Source/cmLocalUnixMakefileGenerator2.cxx | 22 +++++++++++++++++++++- 2 files changed, 26 insertions(+), 1 deletion(-) diff --git a/Source/CMakeLists.txt b/Source/CMakeLists.txt index 9ea72a4..982b964 100644 --- a/Source/CMakeLists.txt +++ b/Source/CMakeLists.txt @@ -55,6 +55,11 @@ SET(SRCS cmDepends.cxx cmDependsC.h cmDependsC.cxx + cmDependsFortran.h + cmDependsFortran.cxx + cmDependsFortranLexer.c + cmDependsFortranParser.h + cmDependsFortranParser.c ) diff --git a/Source/cmLocalUnixMakefileGenerator2.cxx b/Source/cmLocalUnixMakefileGenerator2.cxx index 23a2e27..cfd61bf 100644 --- a/Source/cmLocalUnixMakefileGenerator2.cxx +++ b/Source/cmLocalUnixMakefileGenerator2.cxx @@ -17,12 +17,18 @@ #include "cmLocalUnixMakefileGenerator2.h" #include "cmDepends.h" -#include "cmDependsC.h" #include "cmGeneratedFileStream.h" #include "cmGlobalGenerator.h" #include "cmMakefile.h" #include "cmSourceFile.h" +// Include dependency scanners for supported languages. Only the +// C/C++ scanner is needed for bootstrapping CMake. +#include "cmDependsC.h" +#ifdef CMAKE_BUILD_WITH_CMAKE +# include "cmDependsFortran.h" +#endif + #include // auto_ptr #include @@ -2696,6 +2702,12 @@ cmLocalUnixMakefileGenerator2::GetDependsChecker(const std::string& lang, { return new cmDependsC(dir, objFile); } +#ifdef CMAKE_BUILD_WITH_CMAKE + else if(lang == "Fortran") + { + return new cmDependsFortran(dir, objFile); + } +#endif return 0; } @@ -2735,6 +2747,14 @@ cmLocalUnixMakefileGenerator2 scanner.Write(); return true; } +#ifdef CMAKE_BUILD_WITH_CMAKE + else if(lang == "Fortran") + { + cmDependsFortran scanner(".", objFile, srcFile, includes); + scanner.Write(); + return true; + } +#endif return false; } -- cgit v0.12