2009-09-28 11:43:28 -04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2002-09-04 15:22:11 -04: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.
|
2002-09-04 15:22:11 -04: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.
|
|
|
|
============================================================================*/
|
2002-09-04 15:22:11 -04: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 14:48:28 -04:00
|
|
|
class cmGlobalBorlandMakefileGenerator : public cmGlobalUnixMakefileGenerator3
|
2002-09-04 15:22:11 -04:00
|
|
|
{
|
|
|
|
public:
|
2015-05-24 11:31:14 +02:00
|
|
|
cmGlobalBorlandMakefileGenerator(cmake* cm);
|
2012-11-19 15:48:33 +01:00
|
|
|
static cmGlobalGeneratorFactory* NewFactory() {
|
|
|
|
return new cmGlobalGeneratorSimpleFactory
|
|
|
|
<cmGlobalBorlandMakefileGenerator>(); }
|
2012-08-13 13:42:58 -04:00
|
|
|
|
2002-09-04 15:22:11 -04:00
|
|
|
///! Get the name for the generator.
|
2014-02-24 17:36:27 -05:00
|
|
|
virtual std::string GetName() const {
|
2002-09-04 15:22:11 -04:00
|
|
|
return cmGlobalBorlandMakefileGenerator::GetActualName();}
|
2014-02-24 17:36:27 -05:00
|
|
|
static std::string GetActualName() {return "Borland Makefiles";}
|
2002-09-04 15:22:11 -04:00
|
|
|
|
2003-07-07 21:52:10 -04: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
|
|
|
|
2002-09-04 15:22:11 -04:00
|
|
|
///! Create a local generator appropriate to this Global Generator
|
2015-08-02 11:08:49 +02:00
|
|
|
virtual cmLocalGenerator *CreateLocalGenerator(cmState::Snapshot snapshot);
|
2002-09-04 15:22:11 -04: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.
|
2002-09-04 15:22:11 -04:00
|
|
|
*/
|
2006-03-10 13:54:57 -05:00
|
|
|
virtual void EnableLanguage(std::vector<std::string>const& languages,
|
2007-06-28 09:09:26 -04:00
|
|
|
cmMakefile *, bool optional);
|
2013-12-18 16:39:11 -05:00
|
|
|
|
|
|
|
virtual bool AllowNotParallel() const { return false; }
|
2015-03-30 16:32:26 -04:00
|
|
|
virtual bool AllowDeleteOnError() const { return false; }
|
2002-09-04 15:22:11 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|