diff options
author | Ken Martin <ken.martin@kitware.com> | 2005-01-21 14:38:04 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2005-01-21 14:38:04 (GMT) |
commit | 0c225eb5b969e4f4d93d12dc337927abb25e6878 (patch) | |
tree | ada0f380576e084e626e913ed92ffbf7f2246828 /Source/cmEndWhileCommand.cxx | |
parent | 819c910ee3485d64e829e0f410fdaaca479ae899 (diff) | |
download | CMake-0c225eb5b969e4f4d93d12dc337927abb25e6878.zip CMake-0c225eb5b969e4f4d93d12dc337927abb25e6878.tar.gz CMake-0c225eb5b969e4f4d93d12dc337927abb25e6878.tar.bz2 |
ENH: added while command
Diffstat (limited to 'Source/cmEndWhileCommand.cxx')
-rw-r--r-- | Source/cmEndWhileCommand.cxx | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/Source/cmEndWhileCommand.cxx b/Source/cmEndWhileCommand.cxx new file mode 100644 index 0000000..6d62e78 --- /dev/null +++ b/Source/cmEndWhileCommand.cxx @@ -0,0 +1,24 @@ +/*========================================================================= + + Program: CMake - Cross-Platform Makefile Generator + Module: $RCSfile$ + Language: C++ + Date: $Date$ + Version: $Revision$ + + Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved. + See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details. + + This software is distributed WITHOUT ANY WARRANTY; without even + the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR + PURPOSE. See the above copyright notices for more information. + +=========================================================================*/ +#include "cmEndWhileCommand.h" + +bool cmEndWhileCommand::InvokeInitialPass(std::vector<cmListFileArgument> const&) +{ + this->SetError("An ENDWHILE command was found outside of a proper WHILE ENDWHILE structure. Or its arguments did not match the opening WHILE command."); + return false; +} + |