2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2005-01-21 17:38:04 +03:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
2005-01-21 17:38:04 +03:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
|
|
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
See the License for more information.
|
|
|
|
============================================================================*/
|
2005-01-21 17:38:04 +03:00
|
|
|
#include "cmEndWhileCommand.h"
|
|
|
|
|
2006-05-10 23:08:38 +04:00
|
|
|
bool cmEndWhileCommand
|
2012-03-01 22:32:38 +04:00
|
|
|
::InvokeInitialPass(std::vector<cmListFileArgument> const& args,
|
2008-01-23 18:28:26 +03:00
|
|
|
cmExecutionStatus &)
|
2005-01-21 17:38:04 +03:00
|
|
|
{
|
2012-03-01 22:32:38 +04:00
|
|
|
if (args.empty())
|
|
|
|
{
|
|
|
|
this->SetError("An ENDWHILE command was found outside of a proper "
|
|
|
|
"WHILE ENDWHILE structure.");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
this->SetError("An ENDWHILE command was found outside of a proper "
|
|
|
|
"WHILE ENDWHILE structure. Or its arguments did not "
|
|
|
|
"match the opening WHILE command.");
|
|
|
|
}
|
|
|
|
|
2005-01-21 17:38:04 +03:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|