diff options
author | Ken Martin <ken.martin@kitware.com> | 2005-05-25 16:22:32 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2005-05-25 16:22:32 (GMT) |
commit | d7cbf3e1d6c3753b4d05cf43e0d9978ad154f5ff (patch) | |
tree | dedfc603511a8c9d5dda7c11850ed8a895db244c /Source/cmLocalUnixMakefileGenerator3.h | |
parent | 0e194cab8493026b036f492f26234878be9a12ed (diff) | |
download | CMake-d7cbf3e1d6c3753b4d05cf43e0d9978ad154f5ff.zip CMake-d7cbf3e1d6c3753b4d05cf43e0d9978ad154f5ff.tar.gz CMake-d7cbf3e1d6c3753b4d05cf43e0d9978ad154f5ff.tar.bz2 |
BUG: a fix for constant recomputing of depends
Diffstat (limited to 'Source/cmLocalUnixMakefileGenerator3.h')
-rw-r--r-- | Source/cmLocalUnixMakefileGenerator3.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator3.h b/Source/cmLocalUnixMakefileGenerator3.h index 9f1898f..39f4048 100644 --- a/Source/cmLocalUnixMakefileGenerator3.h +++ b/Source/cmLocalUnixMakefileGenerator3.h @@ -215,10 +215,10 @@ protected: std::string& depMarkFile); // return the appropriate depends checker - static cmDepends* GetDependsChecker(const std::string& lang, - const char* dir, - const char* objFile, - bool verbose); + cmDepends* GetDependsChecker(const std::string& lang, + const char* dir, + const char* objFile, + bool verbose); std::string GenerateCustomRuleFile(const cmCustomCommand& cc, |