diff options
author | Brad King <brad.king@kitware.com> | 2008-05-08 10:09:14 -0400 |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2008-05-08 10:09:14 -0400 |
commit | 12935b1599a2186950db644ff336aca16d725da0 (patch) | |
tree | a3ca5b852b4896ab4849dba8a7fb20f1182e7d42 /Source/cmDependsFortran.h | |
parent | 92198d6b37c26ad5fa41f8cbed28e35af15db1cc (diff) | |
download | cmake-12935b1599a2186950db644ff336aca16d725da0.tar.gz |
ENH: Light refactoring of implicit dependency scanning configuration implementation.
- Move lookup of config variables from cmLocalUnixMakefileGenerator3 to cmDepends hierarchy.
Diffstat (limited to 'Source/cmDependsFortran.h')
-rw-r--r-- | Source/cmDependsFortran.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/Source/cmDependsFortran.h b/Source/cmDependsFortran.h index 59e44da109..af3d94d8b9 100644 --- a/Source/cmDependsFortran.h +++ b/Source/cmDependsFortran.h @@ -36,8 +36,7 @@ public: path from the build directory to the target file, the source file from which to start scanning, the include file search path, and the target directory. */ - cmDependsFortran(std::vector<std::string> const& includes, - std::vector<std::string> const& defines); + cmDependsFortran(cmLocalGenerator* lg); /** Virtual destructor to cleanup subclasses properly. */ virtual ~cmDependsFortran(); @@ -85,8 +84,6 @@ protected: // The source file from which to start scanning. std::string SourceFile; - // The include file search path. - std::vector<std::string> const* IncludePath; std::vector<std::string> PPDefinitions; // Internal implementation details. |