CMake/Source/cmGlobalBorlandMakefileGene...

54 lines
1.8 KiB
C
Raw Normal View History

2002-09-04 23:22:11 +04:00
/*=========================================================================
Program: CMake - Cross-Platform Makefile Generator
2002-09-04 23:22:11 +04:00
Module: $RCSfile$
Language: C++
Date: $Date$
Version: $Revision$
Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
2002-09-04 23:22:11 +04:00
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notices for more information.
=========================================================================*/
#ifndef cmGlobalBorlandMakefileGenerator_h
#define cmGlobalBorlandMakefileGenerator_h
#include "cmGlobalNMakeMakefileGenerator.h"
/** \class cmGlobalBorlandMakefileGenerator
* \brief Write a Borland makefiles.
*
* cmGlobalBorlandMakefileGenerator manages nmake build process for a tree
*/
class cmGlobalBorlandMakefileGenerator : public cmGlobalNMakeMakefileGenerator
{
public:
cmGlobalBorlandMakefileGenerator();
2006-03-10 21:54:57 +03:00
static cmGlobalGenerator* New()
{ return new cmGlobalBorlandMakefileGenerator; }
2002-09-04 23:22:11 +04:00
///! Get the name for the generator.
virtual const char* GetName() const {
2002-09-04 23:22:11 +04:00
return cmGlobalBorlandMakefileGenerator::GetActualName();}
static const char* GetActualName() {return "Borland Makefiles";}
/** Get the documentation entry for this generator. */
virtual void GetDocumentation(cmDocumentationEntry& entry) const;
2002-09-04 23:22:11 +04:00
///! Create a local generator appropriate to this Global Generator
virtual cmLocalGenerator *CreateLocalGenerator();
/**
* Try to determine system infomation such as shared library
* extension, pthreads, byte order etc.
*/
2006-03-10 21:54:57 +03:00
virtual void EnableLanguage(std::vector<std::string>const& languages,
cmMakefile *);
2002-09-04 23:22:11 +04:00
};
#endif