diff options
author | Ken Martin <ken.martin@kitware.com> | 2005-07-28 13:14:42 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2005-07-28 13:14:42 (GMT) |
commit | 825a762a302f7c9eb77f32adb858da4d4a2e97e0 (patch) | |
tree | 38fcfcaaae3480b2ae74f463c4a23d131f0f17de /Source/cmCustomCommand.cxx | |
parent | 68737734876770ddacb817e07d2c63e61b42a34b (diff) | |
download | CMake-825a762a302f7c9eb77f32adb858da4d4a2e97e0.zip CMake-825a762a302f7c9eb77f32adb858da4d4a2e97e0.tar.gz CMake-825a762a302f7c9eb77f32adb858da4d4a2e97e0.tar.bz2 |
ENH: always write out all custom commands
Diffstat (limited to 'Source/cmCustomCommand.cxx')
-rw-r--r-- | Source/cmCustomCommand.cxx | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Source/cmCustomCommand.cxx b/Source/cmCustomCommand.cxx index 8d794f7..d677798 100644 --- a/Source/cmCustomCommand.cxx +++ b/Source/cmCustomCommand.cxx @@ -19,7 +19,6 @@ //---------------------------------------------------------------------------- cmCustomCommand::cmCustomCommand() { - m_Used = false; } //---------------------------------------------------------------------------- @@ -29,7 +28,6 @@ cmCustomCommand::cmCustomCommand(const cmCustomCommand& r): m_CommandLines(r.m_CommandLines), m_Comment(r.m_Comment) { - m_Used = false; } //---------------------------------------------------------------------------- @@ -42,7 +40,6 @@ cmCustomCommand::cmCustomCommand(const char* output, m_CommandLines(commandLines), m_Comment(comment?comment:"") { - m_Used = false; } //---------------------------------------------------------------------------- |