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:
|
2013-08-05 14:57:58 +04:00
|
|
|
cmGlobalVisualStudio71Generator(const char* platformName = NULL);
|
2012-11-19 18:48:33 +04:00
|
|
|
static cmGlobalGeneratorFactory* NewFactory() {
|
|
|
|
return new cmGlobalGeneratorSimpleFactory
|
|
|
|
<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. */
|
2012-11-19 19:42:24 +04:00
|
|
|
static void GetDocumentation(cmDocumentationEntry& entry);
|
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"; }
|
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,
|
2013-12-10 18:16:23 +04:00
|
|
|
const char* name, const char* path,
|
|
|
|
cmTarget const& t);
|
2012-08-13 21:42:58 +04:00
|
|
|
virtual void WriteProjectDepends(std::ostream& fout,
|
2013-12-10 18:16:23 +04:00
|
|
|
const char* name, const char* path,
|
|
|
|
cmTarget const& t);
|
2012-10-11 23:57:22 +04:00
|
|
|
virtual void WriteProjectConfigurations(
|
2012-09-14 14:06:57 +04:00
|
|
|
std::ostream& fout, const char* name, cmTarget::TargetType type,
|
2012-10-11 23:57:22 +04:00
|
|
|
const std::set<std::string>& configsPartOfDefaultBuild,
|
|
|
|
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 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
|