2009-09-28 11:43:28 -04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2006-01-17 10:21:45 -05:00
|
|
|
|
2009-09-28 11:43:28 -04:00
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
2006-01-17 10:21:45 -05:00
|
|
|
|
2009-09-28 11: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 10:21:45 -05:00
|
|
|
#ifndef cmGlobalWatcomWMakeGenerator_h
|
|
|
|
#define cmGlobalWatcomWMakeGenerator_h
|
|
|
|
|
2007-08-09 15:57:30 -04:00
|
|
|
#include "cmGlobalUnixMakefileGenerator3.h"
|
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
|