2009-09-28 15:43:28 +00:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2003-05-08 20:59:27 +00:00
|
|
|
|
2009-09-28 15:43:28 +00:00
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
2003-05-08 20:59:27 +00:00
|
|
|
|
2009-09-28 15:43:28 +00: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-08 20:59:27 +00: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:
|
2014-02-24 22:36:27 +00:00
|
|
|
cmGlobalVisualStudio71Generator(const std::string& platformName = "");
|
2012-11-19 14:48:33 +00:00
|
|
|
static cmGlobalGeneratorFactory* NewFactory() {
|
|
|
|
return new cmGlobalGeneratorSimpleFactory
|
|
|
|
<cmGlobalVisualStudio71Generator>(); }
|
2012-08-13 17:42:58 +00:00
|
|
|
|
2003-05-08 20:59:27 +00:00
|
|
|
///! Get the name for the generator.
|
2014-02-24 22:36:27 +00:00
|
|
|
virtual std::string GetName() const {
|
2003-05-08 20:59:27 +00:00
|
|
|
return cmGlobalVisualStudio71Generator::GetActualName();}
|
2014-02-24 22:36:27 +00:00
|
|
|
static std::string GetActualName() {return "Visual Studio 7 .NET 2003";}
|
2003-05-08 20:59:27 +00:00
|
|
|
|
2003-07-08 01:52:10 +00:00
|
|
|
/** Get the documentation entry for this generator. */
|
2012-11-19 15:42:24 +00:00
|
|
|
static void GetDocumentation(cmDocumentationEntry& entry);
|
2012-08-13 17:42:58 +00:00
|
|
|
|
2008-02-15 16:49:58 +00: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-08 20:59:27 +00:00
|
|
|
protected:
|
2009-09-16 15:44:08 +00:00
|
|
|
virtual const char* GetIDEVersion() { return "7.1"; }
|
2012-08-13 17:42:58 +00:00
|
|
|
virtual void WriteSLNFile(std::ostream& fout,
|
2004-03-10 19:33:18 +00:00
|
|
|
cmLocalGenerator* root,
|
2003-11-26 21:04:01 +00:00
|
|
|
std::vector<cmLocalGenerator*>& generators);
|
2006-02-14 20:35:34 +00:00
|
|
|
virtual void WriteSolutionConfigurations(std::ostream& fout);
|
2012-08-13 17:42:58 +00:00
|
|
|
virtual void WriteProject(std::ostream& fout,
|
2014-02-07 20:40:05 +00:00
|
|
|
const std::string& name, const char* path,
|
2013-12-10 14:16:23 +00:00
|
|
|
cmTarget const& t);
|
2012-08-13 17:42:58 +00:00
|
|
|
virtual void WriteProjectDepends(std::ostream& fout,
|
2014-02-07 20:40:05 +00:00
|
|
|
const std::string& name, const char* path,
|
2013-12-10 14:16:23 +00:00
|
|
|
cmTarget const& t);
|
2012-10-11 19:57:22 +00:00
|
|
|
virtual void WriteProjectConfigurations(
|
2014-02-07 20:40:05 +00:00
|
|
|
std::ostream& fout, const std::string& name, cmTarget::TargetType type,
|
2012-10-11 19:57:22 +00:00
|
|
|
const std::set<std::string>& configsPartOfDefaultBuild,
|
2014-02-24 22:36:27 +00:00
|
|
|
const std::string& platformMapping = "");
|
2008-01-30 17:04:38 +00:00
|
|
|
virtual void WriteExternalProject(std::ostream& fout,
|
2014-02-07 20:40:05 +00:00
|
|
|
const std::string& name,
|
2006-03-10 18:54:57 +00:00
|
|
|
const char* path,
|
2012-04-16 14:07:19 +00:00
|
|
|
const char* typeGuid,
|
2014-02-10 05:21:34 +00:00
|
|
|
const std::set<std::string>& depends);
|
2003-05-08 20:59:27 +00:00
|
|
|
virtual void WriteSLNHeader(std::ostream& fout);
|
2006-02-14 20:35:34 +00:00
|
|
|
|
2006-03-15 16:02:08 +00:00
|
|
|
std::string ProjectConfigurationSectionName;
|
2003-05-08 20:59:27 +00:00
|
|
|
};
|
|
|
|
#endif
|