2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2008-01-23 18:28:26 +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.
|
2008-01-23 18:28:26 +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.
|
|
|
|
============================================================================*/
|
2008-01-23 18:28:26 +03:00
|
|
|
#include "cmBreakCommand.h"
|
|
|
|
|
|
|
|
// cmBreakCommand
|
2014-11-18 18:34:32 +03:00
|
|
|
bool cmBreakCommand::InitialPass(std::vector<std::string> const &args,
|
2008-01-23 18:28:26 +03:00
|
|
|
cmExecutionStatus &status)
|
|
|
|
{
|
2014-11-18 18:34:32 +03:00
|
|
|
if(!this->Makefile->IsLoopBlock())
|
|
|
|
{
|
|
|
|
bool issueMessage = true;
|
2015-01-05 22:31:31 +03:00
|
|
|
std::ostringstream e;
|
2014-11-18 18:34:32 +03:00
|
|
|
cmake::MessageType messageType = cmake::AUTHOR_WARNING;
|
|
|
|
switch(this->Makefile->GetPolicyStatus(cmPolicies::CMP0055))
|
|
|
|
{
|
|
|
|
case cmPolicies::WARN:
|
2015-05-03 11:12:10 +03:00
|
|
|
e << cmPolicies::GetPolicyWarning(cmPolicies::CMP0055) << "\n";
|
2014-11-18 18:34:32 +03:00
|
|
|
break;
|
|
|
|
case cmPolicies::OLD:
|
|
|
|
issueMessage = false;
|
|
|
|
break;
|
|
|
|
case cmPolicies::REQUIRED_ALWAYS:
|
|
|
|
case cmPolicies::REQUIRED_IF_USED:
|
|
|
|
case cmPolicies::NEW:
|
|
|
|
messageType = cmake::FATAL_ERROR;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(issueMessage)
|
|
|
|
{
|
|
|
|
e << "A BREAK command was found outside of a proper "
|
|
|
|
"FOREACH or WHILE loop scope.";
|
|
|
|
this->Makefile->IssueMessage(messageType, e.str());
|
|
|
|
if(messageType == cmake::FATAL_ERROR)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-01-23 18:28:26 +03:00
|
|
|
status.SetBreakInvoked(true);
|
2014-11-18 18:34:32 +03:00
|
|
|
|
|
|
|
if(!args.empty())
|
|
|
|
{
|
|
|
|
bool issueMessage = true;
|
2015-01-05 22:31:31 +03:00
|
|
|
std::ostringstream e;
|
2014-11-18 18:34:32 +03:00
|
|
|
cmake::MessageType messageType = cmake::AUTHOR_WARNING;
|
|
|
|
switch(this->Makefile->GetPolicyStatus(cmPolicies::CMP0055))
|
|
|
|
{
|
|
|
|
case cmPolicies::WARN:
|
2015-05-03 11:12:10 +03:00
|
|
|
e << cmPolicies::GetPolicyWarning(cmPolicies::CMP0055) << "\n";
|
2014-11-18 18:34:32 +03:00
|
|
|
break;
|
|
|
|
case cmPolicies::OLD:
|
|
|
|
issueMessage = false;
|
|
|
|
break;
|
|
|
|
case cmPolicies::REQUIRED_ALWAYS:
|
|
|
|
case cmPolicies::REQUIRED_IF_USED:
|
|
|
|
case cmPolicies::NEW:
|
|
|
|
messageType = cmake::FATAL_ERROR;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(issueMessage)
|
|
|
|
{
|
|
|
|
e << "The BREAK command does not accept any arguments.";
|
|
|
|
this->Makefile->IssueMessage(messageType, e.str());
|
|
|
|
if(messageType == cmake::FATAL_ERROR)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-01-23 18:28:26 +03:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|