diff options
author | Brad King <brad.king@kitware.com> | 2009-03-16 18:30:19 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2009-03-16 18:30:19 (GMT) |
commit | 147d6f31015a64b3ec1b3799d4c0047942b27999 (patch) | |
tree | 2c7c1757d5fb75ef448a42c3ec761636ddea7760 /Source/cmMakeDepend.h | |
parent | 9862f383d09018cd9e14a6054c03b508c0ef3afa (diff) | |
download | CMake-147d6f31015a64b3ec1b3799d4c0047942b27999.zip CMake-147d6f31015a64b3ec1b3799d4c0047942b27999.tar.gz CMake-147d6f31015a64b3ec1b3799d4c0047942b27999.tar.bz2 |
ENH: Remove unused code from cmMakeDepend
This class is the old-style dependency scanner. It is needed only to
implement the output_required_files command. This change removes some
code not needed for that purpose, including a reference to the
HEADER_FILE_ONLY property.
Diffstat (limited to 'Source/cmMakeDepend.h')
-rw-r--r-- | Source/cmMakeDepend.h | 19 |
1 files changed, 1 insertions, 18 deletions
diff --git a/Source/cmMakeDepend.h b/Source/cmMakeDepend.h index 1c91663..3b4f653 100644 --- a/Source/cmMakeDepend.h +++ b/Source/cmMakeDepend.h @@ -96,35 +96,18 @@ public: */ virtual void SetMakefile(cmMakefile* makefile); - /** - * Get the depend info struct for a source file - */ - const cmDependInformation - *GetDependInformationForSourceFile(const cmSourceFile &sf) const; - /** * Add a directory to the search path for include files. */ virtual void AddSearchPath(const char*); /** - * Generate dependencies for all the sources of all the targets - * in the makefile. - */ - void GenerateMakefileDependencies(); - - /** * Generate dependencies for the file given. Returns a pointer to * the cmDependInformation object for the file. */ const cmDependInformation* FindDependencies(const char* file); -protected: - /** - * Add a source file to the search path. - */ - void AddFileToSearchPath(const char* filepath); - +protected: /** * Compute the depend information for this class. */ |