diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2006-01-09 19:40:31 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2006-01-09 19:40:31 (GMT) |
commit | a91947039a025df00403be2cadba469346f274a8 (patch) | |
tree | 67f7cfbde67246ac19514b692d966c71b75083a1 /Source/cmCustomCommand.h | |
parent | aa9734ab6ceab283c83615ea52644ff730651dbc (diff) | |
download | CMake-a91947039a025df00403be2cadba469346f274a8.zip CMake-a91947039a025df00403be2cadba469346f274a8.tar.gz CMake-a91947039a025df00403be2cadba469346f274a8.tar.bz2 |
ENH: for all custom commands that can not be given to a target, add them to all targets in the current makefile
Diffstat (limited to 'Source/cmCustomCommand.h')
-rw-r--r-- | Source/cmCustomCommand.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/cmCustomCommand.h b/Source/cmCustomCommand.h index 0a87949..966cab3 100644 --- a/Source/cmCustomCommand.h +++ b/Source/cmCustomCommand.h @@ -49,11 +49,16 @@ public: /** Get the comment string for the command. */ const char* GetComment() const; + /** set get the used status of the command */ + void Used() { m_Used = true;}; + bool IsUsed() { return m_Used;}; + private: std::string m_Output; std::vector<std::string> m_Depends; cmCustomCommandLines m_CommandLines; std::string m_Comment; + bool m_Used; }; #endif |