Imported Upstream version 2.8.9
[platform/upstream/cmake.git] / Source / cmGlobalJOMMakefileGenerator.h
1 /*============================================================================
2   CMake - Cross Platform Makefile Generator
3   Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
4
5   Distributed under the OSI-approved BSD License (the "License");
6   see accompanying file Copyright.txt for details.
7
8   This software is distributed WITHOUT ANY WARRANTY; without even the
9   implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
10   See the License for more information.
11 ============================================================================*/
12 #ifndef cmGlobalJOMMakefileGenerator_h
13 #define cmGlobalJOMMakefileGenerator_h
14
15 #include "cmGlobalUnixMakefileGenerator3.h"
16
17 /** \class cmGlobalJOMMakefileGenerator
18  * \brief Write a JOM makefiles.
19  *
20  * cmGlobalJOMMakefileGenerator manages nmake build process for a tree
21  */
22 class cmGlobalJOMMakefileGenerator : public cmGlobalUnixMakefileGenerator3
23 {
24 public:
25   cmGlobalJOMMakefileGenerator();
26   static cmGlobalGenerator* New() {
27     return new cmGlobalJOMMakefileGenerator; }
28   ///! Get the name for the generator.
29   virtual const char* GetName() const {
30     return cmGlobalJOMMakefileGenerator::GetActualName();}
31   // use NMake Makefiles in the name so that scripts/tests that depend on the
32   // name NMake Makefiles will work
33   static const char* GetActualName() {return "NMake Makefiles JOM";}
34
35   /** Get the documentation entry for this generator.  */
36   virtual void GetDocumentation(cmDocumentationEntry& entry) const;
37   
38   ///! Create a local generator appropriate to this Global Generator
39   virtual cmLocalGenerator *CreateLocalGenerator();
40
41   /**
42    * Try to determine system infomation such as shared library
43    * extension, pthreads, byte order etc.  
44    */
45   virtual void EnableLanguage(std::vector<std::string>const& languages,
46                               cmMakefile *, bool optional);
47 };
48
49 #endif