diff options
author | Brad King <brad.king@kitware.com> | 2005-03-29 15:34:58 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2005-03-29 15:34:58 (GMT) |
commit | c9403519149ee70092d003320ae4c6a2653fc905 (patch) | |
tree | 2c0810abeb43a855caecb66e46e946867c9a915f /Source/cmLocalUnixMakefileGenerator2.h | |
parent | 65f1e3e1d8a69a9af7744034123fab36c356db1e (diff) | |
download | CMake-c9403519149ee70092d003320ae4c6a2653fc905.zip CMake-c9403519149ee70092d003320ae4c6a2653fc905.tar.gz CMake-c9403519149ee70092d003320ae4c6a2653fc905.tar.bz2 |
BUG: Fix dependencies of custom commands that are relative paths to files or other custom command outputs.
Diffstat (limited to 'Source/cmLocalUnixMakefileGenerator2.h')
-rw-r--r-- | Source/cmLocalUnixMakefileGenerator2.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator2.h b/Source/cmLocalUnixMakefileGenerator2.h index 63cdc4c..76bc75a 100644 --- a/Source/cmLocalUnixMakefileGenerator2.h +++ b/Source/cmLocalUnixMakefileGenerator2.h @@ -202,7 +202,8 @@ protected: void AppendTargetDepends(std::vector<std::string>& depends, const cmTarget& target); - void AppendAnyDepend(std::vector<std::string>& depends, const char* name); + void AppendAnyDepend(std::vector<std::string>& depends, const char* name, + bool assume_unknown_is_file=false); void AppendRuleDepend(std::vector<std::string>& depends, const char* ruleFileName); void AppendCustomDepends(std::vector<std::string>& depends, |