cmake/Source/cmGlobalCommonGenerator.h

23 lines
560 B
C
Raw Normal View History

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
2017-07-20 19:35:53 +02:00
#include "cmConfigure.h"
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);
2016-10-30 18:24:19 +01:00
~cmGlobalCommonGenerator() CM_OVERRIDE;
2015-11-17 17:22:37 +01:00
};
#endif