diff options
Diffstat (limited to 'Source/cmCustomCommand.cxx')
-rw-r--r-- | Source/cmCustomCommand.cxx | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/Source/cmCustomCommand.cxx b/Source/cmCustomCommand.cxx index 60896b1..b2f5c87 100644 --- a/Source/cmCustomCommand.cxx +++ b/Source/cmCustomCommand.cxx @@ -22,6 +22,7 @@ cmCustomCommand::cmCustomCommand() this->HaveComment = false; this->EscapeOldStyle = true; this->EscapeAllowMakeVars = false; + this->SkipRuleDepends = false; } //---------------------------------------------------------------------------- @@ -50,10 +51,9 @@ cmCustomCommand::cmCustomCommand(const std::vector<std::string>& outputs, Comment(comment?comment:""), WorkingDirectory(workingDirectory?workingDirectory:""), EscapeAllowMakeVars(false), - EscapeOldStyle(true) + EscapeOldStyle(true), + SkipRuleDepends(false) { - this->EscapeOldStyle = true; - this->EscapeAllowMakeVars = false; } //---------------------------------------------------------------------------- @@ -136,6 +136,18 @@ void cmCustomCommand::SetEscapeAllowMakeVars(bool b) } //---------------------------------------------------------------------------- +bool cmCustomCommand::GetSkipRuleDepends() const +{ + return this->SkipRuleDepends; +} + +//---------------------------------------------------------------------------- +void cmCustomCommand::SetSkipRuleDepends(bool b) +{ + this->SkipRuleDepends = b; +} + +//---------------------------------------------------------------------------- cmCustomCommand::ImplicitDependsList const& cmCustomCommand::GetImplicitDepends() const { |