2016-10-30 18:24:19 +01:00
|
|
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
2015-11-17 17:22:37 +01:00
|
|
|
#ifndef cmGlobalCommonGenerator_h
|
|
|
|
#define cmGlobalCommonGenerator_h
|
|
|
|
|
2018-01-26 17:06:56 +01:00
|
|
|
#include "cmConfigure.h" // IWYU pragma: keep
|
2016-10-30 18:24:19 +01:00
|
|
|
|
2015-11-17 17:22:37 +01:00
|
|
|
#include "cmGlobalGenerator.h"
|
|
|
|
|
2016-10-30 18:24:19 +01:00
|
|
|
class cmake;
|
|
|
|
|
2015-11-17 17:22:37 +01:00
|
|
|
/** \class cmGlobalCommonGenerator
|
|
|
|
* \brief Common infrastructure for Makefile and Ninja global generators.
|
|
|
|
*/
|
|
|
|
class cmGlobalCommonGenerator : public cmGlobalGenerator
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
cmGlobalCommonGenerator(cmake* cm);
|
2018-01-26 17:06:56 +01:00
|
|
|
~cmGlobalCommonGenerator() override;
|
2015-11-17 17:22:37 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|