2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2003-05-09 00:59:27 +04:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
2003-05-09 00:59:27 +04:00
|
|
|
|
2009-09-28 19: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.
|
|
|
|
============================================================================*/
|
2003-05-09 00:59:27 +04:00
|
|
|
#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();
|
2012-08-13 21:42:58 +04:00
|
|
|
static cmGlobalGenerator* New()
|
2006-03-10 21:54:57 +03:00
|
|
|
{ return new cmGlobalVisualStudio71Generator; }
|
2012-08-13 21:42:58 +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;
|
2012-08-13 21:42:58 +04:00
|
|
|
|
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:
|
2009-09-16 19:44:08 +04:00
|
|
|
virtual const char* GetIDEVersion() { return "7.1"; }
|
2006-05-06 04:54:53 +04:00
|
|
|
virtual void AddPlatformDefinitions(cmMakefile* mf);
|
2012-08-13 21:42:58 +04:00
|
|
|
virtual void WriteSLNFile(std::ostream& fout,
|
2004-03-10 22:33:18 +03:00
|
|
|
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);
|
2012-08-13 21:42:58 +04:00
|
|
|
virtual void WriteProject(std::ostream& fout,
|
2005-06-22 17:06:46 +04:00
|
|
|
const char* name, const char* path, cmTarget &t);
|
2012-08-13 21:42:58 +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,
|
2012-04-16 18:07:19 +04:00
|
|
|
bool partOfDefaultBuild,
|
|
|
|
const char* platformMapping = NULL);
|
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,
|
2012-04-16 18:07:19 +04:00
|
|
|
const char* typeGuid,
|
2009-07-14 22:16:46 +04:00
|
|
|
const std::set<cmStdString>& 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
|