summaryrefslogtreecommitdiff
path: root/Source/cmCustomCommand.h
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2003-06-04 13:42:42 -0400
committerBill Hoffman <bill.hoffman@kitware.com>2003-06-04 13:42:42 -0400
commitfc0a916eee7068720bcaffc32ca5cc8e9414e9d1 (patch)
tree8f4eb45e612c646f6436e45891535582276bb126 /Source/cmCustomCommand.h
parent3154a6649a12711068e54405f70cb4b224b13443 (diff)
downloadcmake-fc0a916eee7068720bcaffc32ca5cc8e9414e9d1.tar.gz
ENH: allow duplicate commands with the same output to be reduced automatically to one command
Diffstat (limited to 'Source/cmCustomCommand.h')
-rw-r--r--Source/cmCustomCommand.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/cmCustomCommand.h b/Source/cmCustomCommand.h
index 79206ac1d0..62b47fa9e8 100644
--- a/Source/cmCustomCommand.h
+++ b/Source/cmCustomCommand.h
@@ -69,6 +69,9 @@ public:
const std::vector<std::string> &GetDepends() const {return m_Depends;}
std::vector<std::string> &GetDepends() {return m_Depends;}
+ ///! Return true if the command and args are equal to the ones here.
+ bool IsEquivalent(const char* command,
+ const char* args);
private:
std::string m_Command;
std::string m_Arguments;