cmCTestConfigureHandler.h 604 B

1234567891011121314151617181920212223242526
  1. /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
  2. file Copyright.txt or https://cmake.org/licensing for details. */
  3. #pragma once
  4. #include "cmConfigure.h" // IWYU pragma: keep
  5. #include "cmCTestGenericHandler.h"
  6. /** \class cmCTestConfigureHandler
  7. * \brief A class that handles ctest -S invocations
  8. *
  9. */
  10. class cmCTestConfigureHandler : public cmCTestGenericHandler
  11. {
  12. public:
  13. using Superclass = cmCTestGenericHandler;
  14. /*
  15. * The main entry point for this class
  16. */
  17. int ProcessHandler() override;
  18. cmCTestConfigureHandler();
  19. void Initialize() override;
  20. };