diff options
author | Brad King <brad.king@kitware.com> | 2007-12-23 03:41:42 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2007-12-23 03:41:42 (GMT) |
commit | 4d360f7ac56939ede629e368fb282d4022f69d6c (patch) | |
tree | c4ba214154fa085fe06dfbf17d080e41661ee48d /Source/cmDependsFortran.h | |
parent | a7245e47925f51b8b648b1eb075f3ecec2b5ce76 (diff) | |
download | CMake-4d360f7ac56939ede629e368fb282d4022f69d6c.zip CMake-4d360f7ac56939ede629e368fb282d4022f69d6c.tar.gz CMake-4d360f7ac56939ede629e368fb282d4022f69d6c.tar.bz2 |
ENH: Convert cmDepends object interface to scan an entire target at once.
Diffstat (limited to 'Source/cmDependsFortran.h')
-rw-r--r-- | Source/cmDependsFortran.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/Source/cmDependsFortran.h b/Source/cmDependsFortran.h index 3b35315..9ed087f 100644 --- a/Source/cmDependsFortran.h +++ b/Source/cmDependsFortran.h @@ -33,8 +33,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::string const& targetDirectory); + cmDependsFortran(std::vector<std::string> const& includes); /** Virtual destructor to cleanup subclasses properly. */ virtual ~cmDependsFortran(); @@ -62,9 +61,6 @@ protected: // The include file search path. std::vector<std::string> const* IncludePath; - // The full path to the target's build directory. - std::string TargetDirectory; - private: cmDependsFortran(cmDependsFortran const&); // Purposely not implemented. void operator=(cmDependsFortran const&); // Purposely not implemented. |