cmGlobalCommonGenerator.h 578 B

12345678910111213141516171819202122
  1. /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
  2. file Copyright.txt or https://cmake.org/licensing for details. */
  3. #ifndef cmGlobalCommonGenerator_h
  4. #define cmGlobalCommonGenerator_h
  5. #include "cmConfigure.h" // IWYU pragma: keep
  6. #include "cmGlobalGenerator.h"
  7. class cmake;
  8. /** \class cmGlobalCommonGenerator
  9. * \brief Common infrastructure for Makefile and Ninja global generators.
  10. */
  11. class cmGlobalCommonGenerator : public cmGlobalGenerator
  12. {
  13. public:
  14. cmGlobalCommonGenerator(cmake* cm);
  15. ~cmGlobalCommonGenerator() override;
  16. };
  17. #endif