diff options
author | Brad King <brad.king@kitware.com> | 2001-03-08 21:12:16 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2001-03-08 21:12:16 (GMT) |
commit | 02fe9118038019e05320081d893340a659f8daa3 (patch) | |
tree | 63489ed5008ad881f120b49cfff40f53d314d08a /Source/cmMakeDepend.h | |
parent | 353f6c3261fdf8003263a8e28d9e657999c720a5 (diff) | |
download | CMake-02fe9118038019e05320081d893340a659f8daa3.zip CMake-02fe9118038019e05320081d893340a659f8daa3.tar.gz CMake-02fe9118038019e05320081d893340a659f8daa3.tar.bz2 |
ENH: Added support for finding dependencies for files that don't exist. Dependency recursion begins with hints provided in the cmClassFile for a file if it doesn't exist.
Diffstat (limited to 'Source/cmMakeDepend.h')
-rw-r--r-- | Source/cmMakeDepend.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Source/cmMakeDepend.h b/Source/cmMakeDepend.h index 041fc18..5965889 100644 --- a/Source/cmMakeDepend.h +++ b/Source/cmMakeDepend.h @@ -131,6 +131,16 @@ private: */ void Depend(cmDependInformation* info); + /** + * Compute the depend information for this class. + */ + void DependWalk(cmDependInformation* info, const char* file); + + /** + * Add a dependency. Possibly walk it for more dependencies. + */ + void AddDependency(cmDependInformation* info, const char* file); + /** * Find the full path name for the given file name. * This uses the include directories. |