2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2006-01-17 18:21:45 +03:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
2006-01-17 18:21:45 +03:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
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.
|
|
|
|
============================================================================*/
|
2006-01-17 18:21:45 +03:00
|
|
|
#ifndef cmGlobalWatcomWMakeGenerator_h
|
|
|
|
#define cmGlobalWatcomWMakeGenerator_h
|
|
|
|
|
2007-08-09 23:57:30 +04:00
|
|
|
#include "cmGlobalUnixMakefileGenerator3.h"
|
2006-01-17 18:21:45 +03:00
|
|
|
|
|
|
|
/** \class cmGlobalWatcomWMakeGenerator
|
|
|
|
* \brief Write a NMake makefiles.
|
|
|
|
*
|
|
|
|
* cmGlobalWatcomWMakeGenerator manages nmake build process for a tree
|
|
|
|
*/
|
|
|
|
class cmGlobalWatcomWMakeGenerator : public cmGlobalUnixMakefileGenerator3
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
cmGlobalWatcomWMakeGenerator();
|
2012-11-19 18:48:33 +04:00
|
|
|
static cmGlobalGeneratorFactory* NewFactory() {
|
|
|
|
return new cmGlobalGeneratorSimpleFactory
|
|
|
|
<cmGlobalWatcomWMakeGenerator>(); }
|
2006-01-17 18:21:45 +03:00
|
|
|
///! Get the name for the generator.
|
|
|
|
virtual const char* GetName() const {
|
|
|
|
return cmGlobalWatcomWMakeGenerator::GetActualName();}
|
|
|
|
static const char* GetActualName() {return "Watcom WMake";}
|
|
|
|
|
|
|
|
/** 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
|
|
|
|
2006-01-17 18:21:45 +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.
|
2006-01-17 18:21:45 +03:00
|
|
|
*/
|
2012-08-13 21:42:58 +04:00
|
|
|
virtual void EnableLanguage(std::vector<std::string>const& languages,
|
2007-06-28 17:09:26 +04:00
|
|
|
cmMakefile *, bool optional);
|
2006-01-17 18:21:45 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|