diff options
author | Brad King <brad.king@kitware.com> | 2015-03-09 13:45:51 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2015-03-09 13:45:51 (GMT) |
commit | 387466dd9508ae57a864cdd8f2c8d8d28140b74c (patch) | |
tree | 31b689ec4ecfa9a1a6d348da62d3b31f151a8d35 /Source/cmLocalUnixMakefileGenerator3.h | |
parent | bdb00b36133c64a36fbba7fd6c648725062b6732 (diff) | |
parent | 66a9c90c4bb5bf93bd570a423f99486b24b9337d (diff) | |
download | CMake-387466dd9508ae57a864cdd8f2c8d8d28140b74c.zip CMake-387466dd9508ae57a864cdd8f2c8d8d28140b74c.tar.gz CMake-387466dd9508ae57a864cdd8f2c8d8d28140b74c.tar.bz2 |
Merge topic 'custom-command-multiple-outputs'
66a9c90c Makefile: Fix multiple custom command outputs regression (#15116)
Diffstat (limited to 'Source/cmLocalUnixMakefileGenerator3.h')
-rw-r--r-- | Source/cmLocalUnixMakefileGenerator3.h | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator3.h b/Source/cmLocalUnixMakefileGenerator3.h index 1ff5e7f..a2f4245 100644 --- a/Source/cmLocalUnixMakefileGenerator3.h +++ b/Source/cmLocalUnixMakefileGenerator3.h @@ -61,13 +61,6 @@ public: const std::vector<std::string>& commands, bool symbolic, bool in_help = false); - void 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); // write the main variables used by the makefiles void WriteMakeVariables(std::ostream& makefileStream); @@ -161,9 +154,6 @@ public: void SetBorlandMakeCurlyHack(bool b) { this->BorlandMakeCurlyHack = b; } - void SetNoMultiOutputMultiDepRules(bool b) - { this->NoMultiOutputMultiDepRules = b; } - // used in writing out Cmake files such as WriteDirectoryInformation static void WriteCMakeArgument(std::ostream& os, const char* s); @@ -349,7 +339,6 @@ private: bool PassMakeflags; bool MakeCommandEscapeTargetTwice; bool BorlandMakeCurlyHack; - bool NoMultiOutputMultiDepRules; //========================================================================== std::string HomeRelativeOutputPath; |