summaryrefslogtreecommitdiffstats
path: root/Source/cmCustomCommand.h
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2005-07-28 13:14:42 (GMT)
committerKen Martin <ken.martin@kitware.com>2005-07-28 13:14:42 (GMT)
commit825a762a302f7c9eb77f32adb858da4d4a2e97e0 (patch)
tree38fcfcaaae3480b2ae74f463c4a23d131f0f17de /Source/cmCustomCommand.h
parent68737734876770ddacb817e07d2c63e61b42a34b (diff)
downloadCMake-825a762a302f7c9eb77f32adb858da4d4a2e97e0.zip
CMake-825a762a302f7c9eb77f32adb858da4d4a2e97e0.tar.gz
CMake-825a762a302f7c9eb77f32adb858da4d4a2e97e0.tar.bz2
ENH: always write out all custom commands
Diffstat (limited to 'Source/cmCustomCommand.h')
-rw-r--r--Source/cmCustomCommand.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/Source/cmCustomCommand.h b/Source/cmCustomCommand.h
index e6d696a..0a87949 100644
--- a/Source/cmCustomCommand.h
+++ b/Source/cmCustomCommand.h
@@ -49,16 +49,11 @@ 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