diff options
author | Ken Martin <ken.martin@kitware.com> | 2005-06-21 13:34:47 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2005-06-21 13:34:47 (GMT) |
commit | b25dea9f11b0f625d9a6e00567a3ff58b38b0c4a (patch) | |
tree | 6af6ae34b74fe4bc42f103df96266b70cde594e6 /Source/cmCustomCommand.cxx | |
parent | 43e1e82fc64906f53b635e6d66f52bf72a6781be (diff) | |
download | CMake-b25dea9f11b0f625d9a6e00567a3ff58b38b0c4a.zip CMake-b25dea9f11b0f625d9a6e00567a3ff58b38b0c4a.tar.gz CMake-b25dea9f11b0f625d9a6e00567a3ff58b38b0c4a.tar.bz2 |
ENH: add test to make sure custom commands are used
Diffstat (limited to 'Source/cmCustomCommand.cxx')
-rw-r--r-- | Source/cmCustomCommand.cxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/cmCustomCommand.cxx b/Source/cmCustomCommand.cxx index d677798..8d794f7 100644 --- a/Source/cmCustomCommand.cxx +++ b/Source/cmCustomCommand.cxx @@ -19,6 +19,7 @@ //---------------------------------------------------------------------------- cmCustomCommand::cmCustomCommand() { + m_Used = false; } //---------------------------------------------------------------------------- @@ -28,6 +29,7 @@ cmCustomCommand::cmCustomCommand(const cmCustomCommand& r): m_CommandLines(r.m_CommandLines), m_Comment(r.m_Comment) { + m_Used = false; } //---------------------------------------------------------------------------- @@ -40,6 +42,7 @@ cmCustomCommand::cmCustomCommand(const char* output, m_CommandLines(commandLines), m_Comment(comment?comment:"") { + m_Used = false; } //---------------------------------------------------------------------------- |