diff options
author | Brad King <brad.king@kitware.com> | 2015-04-13 13:06:07 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2015-04-13 13:06:07 (GMT) |
commit | e0adfe61122da9387d450e4647da26865483d680 (patch) | |
tree | a85ed63c759fa11dbed8a557c995d25cae0104ee /Source/cmMakefileTargetGenerator.h | |
parent | 1862b39868b5a0c256d0256ac7c71e52e59e7155 (diff) | |
parent | 9660a3cceae12ebb3cdc49484dcef590a12eb33c (diff) | |
download | CMake-e0adfe61122da9387d450e4647da26865483d680.zip CMake-e0adfe61122da9387d450e4647da26865483d680.tar.gz CMake-e0adfe61122da9387d450e4647da26865483d680.tar.bz2 |
Merge topic 'custom-command-multiple-outputs'
9660a3cc Makefile: Fix multiple custom command outputs with one missing
5c08e255 KWSys SystemTools: Teach Touch with !create to succeed on missing file
Diffstat (limited to 'Source/cmMakefileTargetGenerator.h')
-rw-r--r-- | Source/cmMakefileTargetGenerator.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/cmMakefileTargetGenerator.h b/Source/cmMakefileTargetGenerator.h index 98017be..58044e8 100644 --- a/Source/cmMakefileTargetGenerator.h +++ b/Source/cmMakefileTargetGenerator.h @@ -224,12 +224,11 @@ protected: typedef std::map<std::string, std::string> MultipleOutputPairsType; MultipleOutputPairsType MultipleOutputPairs; - void WriteMakeRule(std::ostream& os, + bool WriteMakeRule(std::ostream& os, const char* comment, const std::vector<std::string>& outputs, const std::vector<std::string>& depends, const std::vector<std::string>& commands, - bool symbolic, bool in_help = false); // Target name info. |