summaryrefslogtreecommitdiffstats
path: root/Source/cmMakeDepend.h
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2002-06-10 18:19:09 (GMT)
committerKen Martin <ken.martin@kitware.com>2002-06-10 18:19:09 (GMT)
commitfd26d44f5f244844d90dba801af57294283ceae9 (patch)
tree43933ceb15f2e65cd4efa58104aefe939b0474aa /Source/cmMakeDepend.h
parent781fac21f0e3ff4b12dbda9ef5778c730a8285ed (diff)
downloadCMake-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.h4
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;