2016-09-27 22:01:08 +03:00
|
|
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
2006-10-03 22:40:22 +04:00
|
|
|
#include "cmEndMacroCommand.h"
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
bool cmEndMacroCommand::InvokeInitialPass(
|
|
|
|
std::vector<cmListFileArgument> const&, cmExecutionStatus&)
|
2006-10-03 22:40:22 +04:00
|
|
|
{
|
|
|
|
this->SetError("An ENDMACRO command was found outside of a proper "
|
|
|
|
"MACRO ENDMACRO structure. Or its arguments did not "
|
|
|
|
"match the opening MACRO command.");
|
|
|
|
return false;
|
|
|
|
}
|