2009-11-05 23:00:15 +03:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
|
|
|
|
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
|
|
|
|
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
|
|
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
See the License for more information.
|
|
|
|
============================================================================*/
|
|
|
|
#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:
|
|
|
|
cmGlobalJOMMakefileGenerator();
|
2012-11-19 18:48:33 +04:00
|
|
|
static cmGlobalGeneratorFactory* NewFactory() {
|
|
|
|
return new cmGlobalGeneratorSimpleFactory
|
|
|
|
<cmGlobalJOMMakefileGenerator>(); }
|
2009-11-05 23:00:15 +03:00
|
|
|
///! Get the name for the generator.
|
|
|
|
virtual const char* 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
|
|
|
|
static const char* 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
|
|
|
///! Create a local generator appropriate to this Global Generator
|
|
|
|
virtual cmLocalGenerator *CreateLocalGenerator();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Try to determine system infomation 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
|
|
|
*/
|
|
|
|
virtual void EnableLanguage(std::vector<std::string>const& languages,
|
|
|
|
cmMakefile *, bool optional);
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|