diff options
Diffstat (limited to 'Source/cmDependsC.h')
-rw-r--r-- | Source/cmDependsC.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/cmDependsC.h b/Source/cmDependsC.h index dafb112..0830cca 100644 --- a/Source/cmDependsC.h +++ b/Source/cmDependsC.h @@ -30,7 +30,8 @@ public: /** Checking instances need to know the build directory name and the relative path from the build directory to the target file. */ cmDependsC(); - cmDependsC(cmLocalGenerator* lg, const char* targetDir, const char* lang); + cmDependsC(cmLocalGenerator* lg, const char* targetDir, const char* lang, + const std::map<std::string, DependencyVector>* validDeps); /** Virtual destructor to cleanup subclasses properly. */ virtual ~cmDependsC(); @@ -83,6 +84,7 @@ public: bool Used; }; protected: + const std::map<std::string, DependencyVector>* ValidDeps; std::set<cmStdString> Encountered; std::queue<UnscannedEntry> Unscanned; t_CharBuffer Buffer; |