2003-05-09 00:59:27 +04:00
|
|
|
/*=========================================================================
|
|
|
|
|
|
|
|
Program: CMake - Cross-Platform Makefile Generator
|
|
|
|
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.
|
|
|
|
|
|
|
|
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 cmGlobalVisualStudio71Generator_h
|
|
|
|
#define cmGlobalVisualStudio71Generator_h
|
|
|
|
|
|
|
|
#include "cmGlobalVisualStudio7Generator.h"
|
|
|
|
|
|
|
|
|
|
|
|
/** \class cmGlobalVisualStudio71Generator
|
|
|
|
* \brief Write a Unix makefiles.
|
|
|
|
*
|
|
|
|
* cmGlobalVisualStudio71Generator manages UNIX build process for a tree
|
|
|
|
*/
|
|
|
|
class cmGlobalVisualStudio71Generator : public cmGlobalVisualStudio7Generator
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
cmGlobalVisualStudio71Generator();
|
2006-03-10 21:54:57 +03:00
|
|
|
static cmGlobalGenerator* New()
|
|
|
|
{ return new cmGlobalVisualStudio71Generator; }
|
2003-07-08 05:52:10 +04:00
|
|
|
|
2003-05-09 00:59:27 +04:00
|
|
|
///! Get the name for the generator.
|
2003-07-08 05:52:10 +04:00
|
|
|
virtual const char* GetName() const {
|
2003-05-09 00:59:27 +04:00
|
|
|
return cmGlobalVisualStudio71Generator::GetActualName();}
|
2003-05-13 19:42:45 +04:00
|
|
|
static const char* GetActualName() {return "Visual Studio 7 .NET 2003";}
|
2003-05-09 00:59:27 +04:00
|
|
|
|
2003-07-08 05:52:10 +04:00
|
|
|
/** Get the documentation entry for this generator. */
|
|
|
|
virtual void GetDocumentation(cmDocumentationEntry& entry) const;
|
|
|
|
|
2003-05-09 00:59:27 +04:00
|
|
|
///! Create a local generator appropriate to this Global Generator
|
|
|
|
virtual cmLocalGenerator *CreateLocalGenerator();
|
|
|
|
|
2008-02-15 19:49:58 +03:00
|
|
|
/**
|
|
|
|
* Where does this version of Visual Studio look for macros for the
|
|
|
|
* current user? Returns the empty string if this version of Visual
|
|
|
|
* Studio does not implement support for VB macros.
|
|
|
|
*/
|
|
|
|
virtual std::string GetUserMacrosDirectory();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* What is the reg key path to "vsmacros" for this version of Visual
|
|
|
|
* Studio?
|
|
|
|
*/
|
|
|
|
virtual std::string GetUserMacrosRegKeyBase();
|
|
|
|
|
2003-05-09 00:59:27 +04:00
|
|
|
protected:
|
2006-05-06 04:54:53 +04:00
|
|
|
virtual void AddPlatformDefinitions(cmMakefile* mf);
|
2004-03-10 22:33:18 +03:00
|
|
|
virtual void WriteSLNFile(std::ostream& fout,
|
|
|
|
cmLocalGenerator* root,
|
2003-11-27 00:04:01 +03:00
|
|
|
std::vector<cmLocalGenerator*>& generators);
|
2006-02-14 23:35:34 +03:00
|
|
|
virtual void WriteSolutionConfigurations(std::ostream& fout);
|
2003-05-09 00:59:27 +04:00
|
|
|
virtual void WriteProject(std::ostream& fout,
|
2005-06-22 17:06:46 +04:00
|
|
|
const char* name, const char* path, cmTarget &t);
|
2003-05-09 00:59:27 +04:00
|
|
|
virtual void WriteProjectDepends(std::ostream& fout,
|
2005-06-22 17:06:46 +04:00
|
|
|
const char* name, const char* path, cmTarget &t);
|
2006-09-29 00:40:35 +04:00
|
|
|
virtual void WriteProjectConfigurations(std::ostream& fout,
|
2006-05-11 19:47:03 +04:00
|
|
|
const char* name,
|
2006-11-09 17:57:23 +03:00
|
|
|
bool partOfDefaultBuild);
|
2008-01-30 20:04:38 +03:00
|
|
|
virtual void WriteExternalProject(std::ostream& fout,
|
|
|
|
const char* name,
|
2006-03-10 21:54:57 +03:00
|
|
|
const char* path,
|
2004-09-15 23:15:46 +04:00
|
|
|
const std::vector<std::string>& depends);
|
2003-05-09 00:59:27 +04:00
|
|
|
virtual void WriteSLNFooter(std::ostream& fout);
|
|
|
|
virtual void WriteSLNHeader(std::ostream& fout);
|
2006-02-14 23:35:34 +03:00
|
|
|
|
2006-03-15 19:02:08 +03:00
|
|
|
std::string ProjectConfigurationSectionName;
|
2003-05-09 00:59:27 +04:00
|
|
|
};
|
|
|
|
#endif
|