2016-09-27 19:01:08 +00:00
|
|
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
2008-01-23 15:28:26 +00:00
|
|
|
#include "cmReturnCommand.h"
|
|
|
|
|
2016-10-19 20:30:58 +00:00
|
|
|
#include "cmExecutionStatus.h"
|
|
|
|
|
2008-01-23 15:28:26 +00:00
|
|
|
// cmReturnCommand
|
|
|
|
bool cmReturnCommand::InitialPass(std::vector<std::string> const&,
|
2016-05-16 14:34:04 +00:00
|
|
|
cmExecutionStatus& status)
|
2008-01-23 15:28:26 +00:00
|
|
|
{
|
2016-12-26 09:30:31 +00:00
|
|
|
status.SetReturnInvoked();
|
2008-01-23 15:28:26 +00:00
|
|
|
return true;
|
|
|
|
}
|