diff options
author | Brad King <brad.king@kitware.com> | 2008-06-03 13:55:28 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2008-06-03 13:55:28 (GMT) |
commit | e79b73d61f7523cf6ce4d989995ede808da212df (patch) | |
tree | 8bdccfa15bb84fe1e000ddc0915dc4dcbd85b29e /Source/cmGlobalGenerator.h | |
parent | 4d5116c8a21c8fdaab13058dc039625bdab3d20d (diff) | |
download | CMake-e79b73d61f7523cf6ce4d989995ede808da212df.zip CMake-e79b73d61f7523cf6ce4d989995ede808da212df.tar.gz CMake-e79b73d61f7523cf6ce4d989995ede808da212df.tar.bz2 |
BUG: Include less content as input to "rule hash" computation.
- The rule hash should use only commands specified by the user.
- No make output (echo and progress) rules should be included.
- No outputs or dependencies need be included. The native build tool
will take care of them.
Diffstat (limited to 'Source/cmGlobalGenerator.h')
-rw-r--r-- | Source/cmGlobalGenerator.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmGlobalGenerator.h b/Source/cmGlobalGenerator.h index ae9a46d..2865a38 100644 --- a/Source/cmGlobalGenerator.h +++ b/Source/cmGlobalGenerator.h @@ -246,8 +246,8 @@ public: void GetFilesReplacedDuringGenerate(std::vector<std::string>& filenames); void AddRuleHash(const std::vector<std::string>& outputs, - const std::vector<std::string>& depends, - const std::vector<std::string>& commands); + std::vector<std::string>::const_iterator first, + std::vector<std::string>::const_iterator last); protected: // for a project collect all its targets by following depend |