2016-09-27 19:01:08 +00:00
|
|
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
2015-07-07 20:37:56 +00:00
|
|
|
#ifndef cmGlobalCommonGenerator_h
|
|
|
|
#define cmGlobalCommonGenerator_h
|
|
|
|
|
2016-09-01 18:59:28 +00:00
|
|
|
#include <cmConfigure.h>
|
|
|
|
|
2015-07-07 20:37:56 +00:00
|
|
|
#include "cmGlobalGenerator.h"
|
|
|
|
|
2016-09-01 18:59:28 +00:00
|
|
|
class cmake;
|
|
|
|
|
2015-07-07 20:37:56 +00:00
|
|
|
/** \class cmGlobalCommonGenerator
|
|
|
|
* \brief Common infrastructure for Makefile and Ninja global generators.
|
|
|
|
*/
|
|
|
|
class cmGlobalCommonGenerator : public cmGlobalGenerator
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
cmGlobalCommonGenerator(cmake* cm);
|
2016-06-27 19:25:27 +00:00
|
|
|
~cmGlobalCommonGenerator() CM_OVERRIDE;
|
2015-07-07 20:37:56 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|