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. */
|
2009-11-05 23:00:15 +03:00
|
|
|
#ifndef cmGlobalJOMMakefileGenerator_h
|
|
|
|
#define cmGlobalJOMMakefileGenerator_h
|
|
|
|
|
|
|
|
#include "cmGlobalUnixMakefileGenerator3.h"
|
|
|
|
|
|
|
|
/** \class cmGlobalJOMMakefileGenerator
|
|
|
|
* \brief Write a JOM makefiles.
|
|
|
|
*
|
|
|
|
* cmGlobalJOMMakefileGenerator manages nmake build process for a tree
|
|
|
|
*/
|
|
|
|
class cmGlobalJOMMakefileGenerator : public cmGlobalUnixMakefileGenerator3
|
|
|
|
{
|
|
|
|
public:
|
2015-05-24 12:31:14 +03:00
|
|
|
cmGlobalJOMMakefileGenerator(cmake* cm);
|
2016-05-16 17:34:04 +03:00
|
|
|
static cmGlobalGeneratorFactory* NewFactory()
|
|
|
|
{
|
|
|
|
return new cmGlobalGeneratorSimpleFactory<cmGlobalJOMMakefileGenerator>();
|
|
|
|
}
|
2009-11-05 23:00:15 +03:00
|
|
|
///! Get the name for the generator.
|
2016-05-16 17:34:04 +03:00
|
|
|
virtual std::string GetName() const
|
|
|
|
{
|
|
|
|
return cmGlobalJOMMakefileGenerator::GetActualName();
|
|
|
|
}
|
2010-01-08 21:31:37 +03:00
|
|
|
// use NMake Makefiles in the name so that scripts/tests that depend on the
|
|
|
|
// name NMake Makefiles will work
|
2016-05-16 17:34:04 +03:00
|
|
|
static std::string GetActualName() { return "NMake Makefiles JOM"; }
|
2009-11-05 23:00:15 +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
|
|
|
|
2009-11-05 23:00:15 +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.
|
2009-11-05 23:00:15 +03:00
|
|
|
*/
|
2016-05-16 17:34:04 +03:00
|
|
|
virtual void EnableLanguage(std::vector<std::string> const& languages,
|
|
|
|
cmMakefile*, bool optional);
|
|
|
|
|
2015-08-06 00:23:07 +03:00
|
|
|
private:
|
|
|
|
void PrintCompilerAdvice(std::ostream& os, std::string const& lang,
|
|
|
|
const char* envVar) const;
|
2009-11-05 23:00:15 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|