2016-09-27 15:01:08 -04:00
|
|
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
2005-12-22 16:42:36 -05:00
|
|
|
#ifndef cmGlobalMinGWMakefileGenerator_h
|
|
|
|
#define cmGlobalMinGWMakefileGenerator_h
|
|
|
|
|
2007-08-09 15:57:30 -04:00
|
|
|
#include "cmGlobalUnixMakefileGenerator3.h"
|
2005-12-22 16:42:36 -05:00
|
|
|
|
|
|
|
/** \class cmGlobalMinGWMakefileGenerator
|
|
|
|
* \brief Write a NMake makefiles.
|
|
|
|
*
|
|
|
|
* cmGlobalMinGWMakefileGenerator manages nmake build process for a tree
|
|
|
|
*/
|
|
|
|
class cmGlobalMinGWMakefileGenerator : public cmGlobalUnixMakefileGenerator3
|
|
|
|
{
|
|
|
|
public:
|
2015-05-24 11:31:14 +02:00
|
|
|
cmGlobalMinGWMakefileGenerator(cmake* cm);
|
2016-05-16 10:34:04 -04:00
|
|
|
static cmGlobalGeneratorFactory* NewFactory()
|
|
|
|
{
|
|
|
|
return new cmGlobalGeneratorSimpleFactory<
|
|
|
|
cmGlobalMinGWMakefileGenerator>();
|
|
|
|
}
|
2005-12-22 16:42:36 -05:00
|
|
|
///! Get the name for the generator.
|
2016-05-16 10:34:04 -04:00
|
|
|
virtual std::string GetName() const
|
|
|
|
{
|
|
|
|
return cmGlobalMinGWMakefileGenerator::GetActualName();
|
|
|
|
}
|
|
|
|
static std::string GetActualName() { return "MinGW Makefiles"; }
|
2005-12-22 16:42:36 -05:00
|
|
|
|
|
|
|
/** Get the documentation entry for this generator. */
|
2012-11-19 16:42:24 +01:00
|
|
|
static void GetDocumentation(cmDocumentationEntry& entry);
|
2012-08-13 13:42:58 -04:00
|
|
|
|
2005-12-22 16:42:36 -05:00
|
|
|
/**
|
2014-10-09 17:22:45 -06:00
|
|
|
* Try to determine system information such as shared library
|
2012-08-13 13:42:58 -04:00
|
|
|
* extension, pthreads, byte order etc.
|
2005-12-22 16:42:36 -05:00
|
|
|
*/
|
2016-05-16 10:34:04 -04:00
|
|
|
virtual void EnableLanguage(std::vector<std::string> const& languages,
|
|
|
|
cmMakefile*, bool optional);
|
2005-12-22 16:42:36 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|