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