cmReturnCommand.cxx 377 B

1234567891011
  1. /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
  2. file Copyright.txt or https://cmake.org/licensing for details. */
  3. #include "cmReturnCommand.h"
  4. // cmReturnCommand
  5. bool cmReturnCommand::InitialPass(std::vector<std::string> const&,
  6. cmExecutionStatus& status)
  7. {
  8. status.SetReturnInvoked(true);
  9. return true;
  10. }