diff options
author | Brad King <brad.king@kitware.com> | 2005-03-08 18:43:17 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2005-03-08 18:43:17 (GMT) |
commit | ddb04080076529f8c0fa781b8f4a0a6453d1fac9 (patch) | |
tree | 00b88a1b0280213936b3022b289ce33093e7b12d /Source/cmLocalUnixMakefileGenerator2.h | |
parent | 200c98fc327ba82e52d9bf6502c5ba478506c6aa (diff) | |
download | CMake-ddb04080076529f8c0fa781b8f4a0a6453d1fac9.zip CMake-ddb04080076529f8c0fa781b8f4a0a6453d1fac9.tar.gz CMake-ddb04080076529f8c0fa781b8f4a0a6453d1fac9.tar.bz2 |
ENH: Added option CMAKE_SKIP_RULE_DEPENDENCY to skip making build rules depend on their own rule files. It can be added to the cache by the user or added by the project in a list file.
Diffstat (limited to 'Source/cmLocalUnixMakefileGenerator2.h')
-rw-r--r-- | Source/cmLocalUnixMakefileGenerator2.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator2.h b/Source/cmLocalUnixMakefileGenerator2.h index 2fa163c..2026abd 100644 --- a/Source/cmLocalUnixMakefileGenerator2.h +++ b/Source/cmLocalUnixMakefileGenerator2.h @@ -207,6 +207,8 @@ protected: void AppendTargetDepends(std::vector<std::string>& depends, const cmTarget& target); void AppendAnyDepend(std::vector<std::string>& depends, const char* name); + void AppendRuleDepend(std::vector<std::string>& depends, + const char* ruleFileName); void AppendCustomDepends(std::vector<std::string>& depends, const std::vector<cmCustomCommand>& ccs); void AppendCustomDepend(std::vector<std::string>& depends, |