diff options
author | Ken Martin <ken.martin@kitware.com> | 2002-06-10 18:19:09 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2002-06-10 18:19:09 (GMT) |
commit | fd26d44f5f244844d90dba801af57294283ceae9 (patch) | |
tree | 43933ceb15f2e65cd4efa58104aefe939b0474aa /Source/cmMakeDepend.h | |
parent | 781fac21f0e3ff4b12dbda9ef5778c730a8285ed (diff) | |
download | CMake-fd26d44f5f244844d90dba801af57294283ceae9.zip CMake-fd26d44f5f244844d90dba801af57294283ceae9.tar.gz CMake-fd26d44f5f244844d90dba801af57294283ceae9.tar.bz2 |
now includes current include files directory when searching for files it includes
Diffstat (limited to 'Source/cmMakeDepend.h')
-rw-r--r-- | Source/cmMakeDepend.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmMakeDepend.h b/Source/cmMakeDepend.h index fd904fa..5e59950 100644 --- a/Source/cmMakeDepend.h +++ b/Source/cmMakeDepend.h @@ -139,14 +139,14 @@ protected: * Get an instance of cmDependInformation corresponding to the given file * name. */ - cmDependInformation* GetDependInformation(const char* file); + cmDependInformation* GetDependInformation(const char* file, const char *extraPath); /** * Find the full path name for the given file name. * This uses the include directories. * TODO: Cache path conversions to reduce FileExists calls. */ - std::string FullPath(const char*); + std::string FullPath(const char *filename, const char *extraPath); const cmMakefile* m_Makefile; bool m_Verbose; |