diff options
Diffstat (limited to 'Source/cmDepends.h')
-rw-r--r-- | Source/cmDepends.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Source/cmDepends.h b/Source/cmDepends.h index b9ebdf9..75afaaf 100644 --- a/Source/cmDepends.h +++ b/Source/cmDepends.h @@ -34,7 +34,7 @@ class cmDepends public: /** Instances need to know the build directory name and the relative path from the build directory to the target file. */ - cmDepends(); + cmDepends(cmLocalGenerator* lg=0, const char* targetDir=""); /** at what level will the compile be done from */ void SetCompileDirectory(const char *dir) {this->CompileDirectory = dir;}; @@ -108,6 +108,11 @@ protected: char* Dependee; char* Depender; + // The include file search path. + std::vector<std::string> IncludePath; + + void SetIncludePathFromLanguage(const char* lang); + private: cmDepends(cmDepends const&); // Purposely not implemented. void operator=(cmDepends const&); // Purposely not implemented. |