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:
|
2015-05-24 12:31:14 +03:00
|
|
|
cmGlobalVisualStudio71Generator(cmake* cm,
|
|
|
|
const std::string& platformName = "");
|
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.
|
2014-02-25 02:36:27 +04:00
|
|
|
virtual std::string GetName() const {
|
2003-05-09 00:59:27 +04:00
|
|
|
return cmGlobalVisualStudio71Generator::GetActualName();}
|
2014-02-25 02:36:27 +04:00
|
|
|
static std::string 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
|
|
|
|
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);
|
2015-05-20 20:55:21 +03:00
|
|
|
virtual void WriteSolutionConfigurations(
|
|
|
|
std::ostream& fout, std::vector<std::string> const& configs);
|
2012-08-13 21:42:58 +04:00
|
|
|
virtual void WriteProject(std::ostream& fout,
|
2014-02-08 00:40:05 +04:00
|
|
|
const std::string& name, const char* path,
|
2013-12-10 18:16:23 +04:00
|
|
|
cmTarget const& t);
|
2012-08-13 21:42:58 +04:00
|
|
|
virtual void WriteProjectDepends(std::ostream& fout,
|
2014-02-08 00:40:05 +04:00
|
|
|
const std::string& name, const char* path,
|
2013-12-10 18:16:23 +04:00
|
|
|
cmTarget const& t);
|
2012-10-11 23:57:22 +04:00
|
|
|
virtual void WriteProjectConfigurations(
|
2014-02-08 00:40:05 +04:00
|
|
|
std::ostream& fout, const std::string& name, cmTarget::TargetType type,
|
2015-05-20 20:55:21 +03:00
|
|
|
std::vector<std::string> const& configs,
|
2012-10-11 23:57:22 +04:00
|
|
|
const std::set<std::string>& configsPartOfDefaultBuild,
|
2014-02-25 02:36:27 +04:00
|
|
|
const std::string& platformMapping = "");
|
2008-01-30 20:04:38 +03:00
|
|
|
virtual void WriteExternalProject(std::ostream& fout,
|
2014-02-08 00:40:05 +04:00
|
|
|
const std::string& name,
|
2006-03-10 21:54:57 +03:00
|
|
|
const char* path,
|
2012-04-16 18:07:19 +04:00
|
|
|
const char* typeGuid,
|
2014-02-10 09:21:34 +04:00
|
|
|
const std::set<std::string>& 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
|