2002-08-31 00:01:48 +04:00
|
|
|
/*=========================================================================
|
|
|
|
|
2002-10-24 02:03:27 +04:00
|
|
|
Program: CMake - Cross-Platform Makefile Generator
|
2002-08-31 00:01:48 +04:00
|
|
|
Module: $RCSfile$
|
|
|
|
Language: C++
|
|
|
|
Date: $Date$
|
|
|
|
Version: $Revision$
|
|
|
|
|
2002-10-24 02:03:27 +04:00
|
|
|
Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
|
|
|
|
See Copyright.txt or http://www.cmake.org/HTML/Copyright.html 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 above copyright notices for more information.
|
|
|
|
|
|
|
|
=========================================================================*/
|
|
|
|
#ifndef cmGlobalNMakeMakefileGenerator_h
|
|
|
|
#define cmGlobalNMakeMakefileGenerator_h
|
|
|
|
|
2005-05-12 18:49:56 +04:00
|
|
|
#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:
|
2002-12-05 21:44:11 +03:00
|
|
|
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.
|
2003-07-08 05:52:10 +04:00
|
|
|
virtual const char* GetName() const {
|
2002-08-31 00:01:48 +04:00
|
|
|
return cmGlobalNMakeMakefileGenerator::GetActualName();}
|
|
|
|
static const char* GetActualName() {return "NMake Makefiles";}
|
|
|
|
|
2003-07-08 05:52:10 +04:00
|
|
|
/** 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 *);
|
2002-08-31 00:01:48 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|