2016-09-27 19:01:08 +00:00
|
|
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
2002-09-04 19:22:11 +00:00
|
|
|
#ifndef cmGlobalBorlandMakefileGenerator_h
|
|
|
|
#define cmGlobalBorlandMakefileGenerator_h
|
|
|
|
|
|
|
|
#include "cmGlobalNMakeMakefileGenerator.h"
|
|
|
|
|
|
|
|
/** \class cmGlobalBorlandMakefileGenerator
|
|
|
|
* \brief Write a Borland makefiles.
|
|
|
|
*
|
|
|
|
* cmGlobalBorlandMakefileGenerator manages nmake build process for a tree
|
|
|
|
*/
|
2015-05-06 18:48:28 +00:00
|
|
|
class cmGlobalBorlandMakefileGenerator : public cmGlobalUnixMakefileGenerator3
|
2002-09-04 19:22:11 +00:00
|
|
|
{
|
|
|
|
public:
|
2015-05-24 09:31:14 +00:00
|
|
|
cmGlobalBorlandMakefileGenerator(cmake* cm);
|
2016-05-16 14:34:04 +00:00
|
|
|
static cmGlobalGeneratorFactory* NewFactory()
|
|
|
|
{
|
|
|
|
return new cmGlobalGeneratorSimpleFactory<
|
|
|
|
cmGlobalBorlandMakefileGenerator>();
|
|
|
|
}
|
2012-08-13 17:42:58 +00:00
|
|
|
|
2002-09-04 19:22:11 +00:00
|
|
|
///! Get the name for the generator.
|
2016-05-16 14:34:04 +00:00
|
|
|
virtual std::string GetName() const
|
|
|
|
{
|
|
|
|
return cmGlobalBorlandMakefileGenerator::GetActualName();
|
|
|
|
}
|
|
|
|
static std::string GetActualName() { return "Borland Makefiles"; }
|
2002-09-04 19:22:11 +00:00
|
|
|
|
2003-07-08 01:52:10 +00:00
|
|
|
/** Get the documentation entry for this generator. */
|
2012-11-19 15:42:24 +00:00
|
|
|
static void GetDocumentation(cmDocumentationEntry& entry);
|
2012-08-13 17:42:58 +00:00
|
|
|
|
2002-09-04 19:22:11 +00:00
|
|
|
///! Create a local generator appropriate to this Global Generator
|
2016-05-16 14:34:04 +00:00
|
|
|
virtual cmLocalGenerator* CreateLocalGenerator(cmMakefile* mf);
|
2002-09-04 19:22:11 +00:00
|
|
|
|
|
|
|
/**
|
2014-10-09 23:22:45 +00:00
|
|
|
* Try to determine system information such as shared library
|
2012-08-13 17:42:58 +00:00
|
|
|
* extension, pthreads, byte order etc.
|
2002-09-04 19:22:11 +00:00
|
|
|
*/
|
2016-05-16 14:34:04 +00:00
|
|
|
virtual void EnableLanguage(std::vector<std::string> const& languages,
|
|
|
|
cmMakefile*, bool optional);
|
2013-12-18 21:39:11 +00:00
|
|
|
|
|
|
|
virtual bool AllowNotParallel() const { return false; }
|
2015-03-30 20:32:26 +00:00
|
|
|
virtual bool AllowDeleteOnError() const { return false; }
|
2002-09-04 19:22:11 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|