CMake/Source/cmGlobalNMakeMakefileGenera...

48 lines
1.7 KiB
C
Raw Normal View History

/*============================================================================
CMake - Cross Platform Makefile Generator
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
2002-08-31 00:01:48 +04:00
Distributed under the OSI-approved BSD License (the "License");
see accompanying file Copyright.txt for details.
2002-08-31 00:01:48 +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-08-31 00:01:48 +04:00
#ifndef cmGlobalNMakeMakefileGenerator_h
#define cmGlobalNMakeMakefileGenerator_h
#include "cmGlobalUnixMakefileGenerator3.h"
2002-08-31 00:01:48 +04:00
/** \class cmGlobalNMakeMakefileGenerator
* \brief Write a NMake makefiles.
*
* cmGlobalNMakeMakefileGenerator manages nmake build process for a tree
*/
2005-05-12 18:49:56 +04:00
class cmGlobalNMakeMakefileGenerator : public cmGlobalUnixMakefileGenerator3
2002-08-31 00:01:48 +04:00
{
public:
cmGlobalNMakeMakefileGenerator();
2006-05-11 18:40:28 +04:00
static cmGlobalGenerator* New() {
return new cmGlobalNMakeMakefileGenerator; }
2002-08-31 00:01:48 +04:00
///! Get the name for the generator.
virtual const char* GetName() const {
2002-08-31 00:01:48 +04:00
return cmGlobalNMakeMakefileGenerator::GetActualName();}
static const char* GetActualName() {return "NMake Makefiles";}
/** Get the documentation entry for this generator. */
virtual void GetDocumentation(cmDocumentationEntry& entry) const;
2002-08-31 00:01:48 +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 *, bool optional);
2002-08-31 00:01:48 +04:00
};
#endif