2016-09-27 15:01:08 -04:00
|
|
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
2006-01-17 10:21:45 -05:00
|
|
|
#ifndef cmGlobalWatcomWMakeGenerator_h
|
|
|
|
#define cmGlobalWatcomWMakeGenerator_h
|
|
|
|
|
2016-09-01 20:59:28 +02:00
|
|
|
#include <cmConfigure.h>
|
|
|
|
|
|
|
|
#include "cmGlobalGeneratorFactory.h"
|
2007-08-09 15:57:30 -04:00
|
|
|
#include "cmGlobalUnixMakefileGenerator3.h"
|
2006-01-17 10:21:45 -05:00
|
|
|
|
2016-09-01 20:59:28 +02:00
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
class cmMakefile;
|
|
|
|
class cmake;
|
|
|
|
struct cmDocumentationEntry;
|
|
|
|
|
2006-01-17 10:21:45 -05:00
|
|
|
/** \class cmGlobalWatcomWMakeGenerator
|
|
|
|
* \brief Write a NMake makefiles.
|
|
|
|
*
|
|
|
|
* cmGlobalWatcomWMakeGenerator manages nmake build process for a tree
|
|
|
|
*/
|
|
|
|
class cmGlobalWatcomWMakeGenerator : public cmGlobalUnixMakefileGenerator3
|
|
|
|
{
|
|
|
|
public:
|
2015-05-24 11:31:14 +02:00
|
|
|
cmGlobalWatcomWMakeGenerator(cmake* cm);
|
2016-05-16 10:34:04 -04:00
|
|
|
static cmGlobalGeneratorFactory* NewFactory()
|
|
|
|
{
|
|
|
|
return new cmGlobalGeneratorSimpleFactory<cmGlobalWatcomWMakeGenerator>();
|
|
|
|
}
|
2006-01-17 10:21:45 -05:00
|
|
|
///! Get the name for the generator.
|
2016-06-27 21:25:27 +02:00
|
|
|
std::string GetName() const CM_OVERRIDE
|
2016-05-16 10:34:04 -04:00
|
|
|
{
|
|
|
|
return cmGlobalWatcomWMakeGenerator::GetActualName();
|
|
|
|
}
|
|
|
|
static std::string GetActualName() { return "Watcom WMake"; }
|
2006-01-17 10:21:45 -05:00
|
|
|
|
|
|
|
/** Get the documentation entry for this generator. */
|
2012-11-19 16:42:24 +01:00
|
|
|
static void GetDocumentation(cmDocumentationEntry& entry);
|
2012-08-13 13:42:58 -04:00
|
|
|
|
2006-01-17 10:21:45 -05:00
|
|
|
/**
|
2014-10-09 17:22:45 -06:00
|
|
|
* Try to determine system information such as shared library
|
2012-08-13 13:42:58 -04:00
|
|
|
* extension, pthreads, byte order etc.
|
2006-01-17 10:21:45 -05:00
|
|
|
*/
|
2016-06-27 21:25:27 +02:00
|
|
|
void EnableLanguage(std::vector<std::string> const& languages, cmMakefile*,
|
|
|
|
bool optional) CM_OVERRIDE;
|
2013-12-18 16:39:11 -05:00
|
|
|
|
2016-06-27 21:25:27 +02:00
|
|
|
bool AllowNotParallel() const CM_OVERRIDE { return false; }
|
|
|
|
bool AllowDeleteOnError() const CM_OVERRIDE { return false; }
|
2006-01-17 10:21:45 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|