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
|
|
|
|
|
2016-09-01 21:59:28 +03:00
|
|
|
#include <cmConfigure.h>
|
|
|
|
|
|
|
|
#include "cmGlobalGeneratorFactory.h"
|
2007-08-09 23:57:30 +04:00
|
|
|
#include "cmGlobalUnixMakefileGenerator3.h"
|
2006-01-17 18:21:45 +03:00
|
|
|
|
2016-09-01 21:59:28 +03:00
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
class cmMakefile;
|
|
|
|
class cmake;
|
|
|
|
struct cmDocumentationEntry;
|
|
|
|
|
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:
|
2015-05-24 12:31:14 +03:00
|
|
|
cmGlobalWatcomWMakeGenerator(cmake* cm);
|
2016-05-16 17:34:04 +03:00
|
|
|
static cmGlobalGeneratorFactory* NewFactory()
|
|
|
|
{
|
|
|
|
return new cmGlobalGeneratorSimpleFactory<cmGlobalWatcomWMakeGenerator>();
|
|
|
|
}
|
2006-01-17 18:21:45 +03:00
|
|
|
///! Get the name for the generator.
|
2016-06-27 22:25:27 +03:00
|
|
|
std::string GetName() const CM_OVERRIDE
|
2016-05-16 17:34:04 +03:00
|
|
|
{
|
|
|
|
return cmGlobalWatcomWMakeGenerator::GetActualName();
|
|
|
|
}
|
|
|
|
static std::string GetActualName() { return "Watcom WMake"; }
|
2006-01-17 18:21:45 +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
|
|
|
|
2006-01-17 18:21:45 +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.
|
2006-01-17 18:21:45 +03:00
|
|
|
*/
|
2016-06-27 22:25:27 +03:00
|
|
|
void EnableLanguage(std::vector<std::string> const& languages, cmMakefile*,
|
|
|
|
bool optional) CM_OVERRIDE;
|
2013-12-19 01:39:11 +04:00
|
|
|
|
2016-06-27 22:25:27 +03:00
|
|
|
bool AllowNotParallel() const CM_OVERRIDE { return false; }
|
|
|
|
bool AllowDeleteOnError() const CM_OVERRIDE { return false; }
|
2006-01-17 18:21:45 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|