cmCTestReadCustomFilesCommand.h 635 B

12345678910111213141516171819202122232425
  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 <vector>
  7. #include "cmCTestCommand.h"
  8. class cmExecutionStatus;
  9. class cmCTestReadCustomFilesCommand : public cmCTestCommand
  10. {
  11. public:
  12. using cmCTestCommand::cmCTestCommand;
  13. /**
  14. * This is called when the command is first encountered in
  15. * the CMakeLists.txt file.
  16. */
  17. bool InitialPass(std::vector<std::string> const& args,
  18. cmExecutionStatus& status) const override;
  19. };