cmCTestReadCustomFilesCommand.h 591 B

12345678910111213141516171819202122
  1. /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
  2. file LICENSE.rst or https://cmake.org/licensing for details. */
  3. #pragma once
  4. #include "cmConfigure.h" // IWYU pragma: keep
  5. #include <string>
  6. #include "cmCTestCommand.h"
  7. class cmCTestReadCustomFilesCommand : public cmCTestCommand
  8. {
  9. public:
  10. using cmCTestCommand::cmCTestCommand;
  11. /**
  12. * This is called when the command is first encountered in
  13. * the CMakeLists.txt file.
  14. */
  15. bool InitialPass(std::vector<std::string> const& args,
  16. cmExecutionStatus& status) const override;
  17. };