cmCTestConfigureHandler.h 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. /*============================================================================
  2. CMake - Cross Platform Makefile Generator
  3. Copyright 2000-2009 Kitware, Inc.
  4. Distributed under the OSI-approved BSD License (the "License");
  5. see accompanying file Copyright.txt for details.
  6. This software is distributed WITHOUT ANY WARRANTY; without even the
  7. implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  8. See the License for more information.
  9. ============================================================================*/
  10. #ifndef cmCTestConfigureHandler_h
  11. #define cmCTestConfigureHandler_h
  12. #include "cmCTestGenericHandler.h"
  13. #include "cmListFileCache.h"
  14. /** \class cmCTestConfigureHandler
  15. * \brief A class that handles ctest -S invocations
  16. *
  17. */
  18. class cmCTestConfigureHandler : public cmCTestGenericHandler
  19. {
  20. public:
  21. cmTypeMacro(cmCTestConfigureHandler, cmCTestGenericHandler);
  22. /*
  23. * The main entry point for this class
  24. */
  25. int ProcessHandler();
  26. cmCTestConfigureHandler();
  27. void Initialize();
  28. };
  29. #endif