2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2004-07-05 20:16:33 +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.
|
2004-07-05 20:16:33 +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.
|
|
|
|
============================================================================*/
|
2004-07-05 20:16:33 +04:00
|
|
|
#ifndef cmGlobalVisualStudio8Generator_h
|
|
|
|
#define cmGlobalVisualStudio8Generator_h
|
|
|
|
|
|
|
|
#include "cmGlobalVisualStudio71Generator.h"
|
|
|
|
|
|
|
|
|
|
|
|
/** \class cmGlobalVisualStudio8Generator
|
|
|
|
* \brief Write a Unix makefiles.
|
|
|
|
*
|
|
|
|
* cmGlobalVisualStudio8Generator manages UNIX build process for a tree
|
|
|
|
*/
|
|
|
|
class cmGlobalVisualStudio8Generator : public cmGlobalVisualStudio71Generator
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
cmGlobalVisualStudio8Generator();
|
2012-08-13 21:42:58 +04:00
|
|
|
static cmGlobalGenerator* New() {
|
2006-05-11 19:47:03 +04:00
|
|
|
return new cmGlobalVisualStudio8Generator; }
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2004-07-05 20:16:33 +04:00
|
|
|
///! Get the name for the generator.
|
|
|
|
virtual const char* GetName() const {
|
|
|
|
return cmGlobalVisualStudio8Generator::GetActualName();}
|
|
|
|
static const char* GetActualName() {return "Visual Studio 8 2005";}
|
|
|
|
|
2010-08-16 23:49:14 +04:00
|
|
|
virtual const char* GetPlatformName() const {return "Win32";}
|
|
|
|
|
2004-07-05 20:16:33 +04:00
|
|
|
/** Get the documentation entry for this generator. */
|
|
|
|
virtual void GetDocumentation(cmDocumentationEntry& entry) const;
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2004-07-05 20:16:33 +04:00
|
|
|
///! Create a local generator appropriate to this Global Generator
|
|
|
|
virtual cmLocalGenerator *CreateLocalGenerator();
|
|
|
|
|
2005-12-13 22:21:28 +03:00
|
|
|
/**
|
|
|
|
* Override Configure and Generate to add the build-system check
|
|
|
|
* target.
|
|
|
|
*/
|
|
|
|
virtual void Configure();
|
|
|
|
virtual void Generate();
|
2007-11-16 15:01: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();
|
|
|
|
|
2008-02-15 19:49:58 +03:00
|
|
|
/**
|
|
|
|
* What is the reg key path to "vsmacros" for this version of Visual
|
|
|
|
* Studio?
|
|
|
|
*/
|
|
|
|
virtual std::string GetUserMacrosRegKeyBase();
|
|
|
|
|
2009-10-21 00:38:37 +04:00
|
|
|
/** Return true if the target project file should have the option
|
|
|
|
LinkLibraryDependencies and link to .sln dependencies. */
|
|
|
|
virtual bool NeedLinkLibraryDependencies(cmTarget& target);
|
|
|
|
|
2004-07-05 20:16:33 +04:00
|
|
|
protected:
|
2009-09-16 19:44:08 +04:00
|
|
|
virtual const char* GetIDEVersion() { return "8.0"; }
|
2007-04-04 22:50:35 +04:00
|
|
|
|
2007-12-21 23:04:06 +03:00
|
|
|
virtual bool VSLinksDependencies() const { return false; }
|
2007-04-04 22:50:35 +04:00
|
|
|
|
2009-10-19 18:47:34 +04:00
|
|
|
void AddCheckTarget();
|
|
|
|
|
2009-07-29 19:28:55 +04:00
|
|
|
static cmIDEFlagTable const* GetExtraFlagTableVS8();
|
2006-05-06 04:54:53 +04:00
|
|
|
virtual void AddPlatformDefinitions(cmMakefile* mf);
|
2004-07-05 20:16:33 +04:00
|
|
|
virtual void WriteSLNHeader(std::ostream& fout);
|
2006-02-14 23:35:34 +03:00
|
|
|
virtual void WriteSolutionConfigurations(std::ostream& fout);
|
|
|
|
virtual void WriteProjectConfigurations(std::ostream& fout,
|
2006-09-29 00:40:35 +04:00
|
|
|
const char* name,
|
2012-04-16 18:07:19 +04:00
|
|
|
bool partOfDefaultBuild,
|
|
|
|
const char* platformMapping = NULL);
|
2010-12-01 19:43:30 +03:00
|
|
|
virtual bool ComputeTargetDepends();
|
2010-08-20 22:07:02 +04:00
|
|
|
virtual void WriteProjectDepends(std::ostream& fout, const char* name,
|
|
|
|
const char* path, cmTarget &t);
|
2010-08-22 23:23:11 +04:00
|
|
|
|
|
|
|
const char* ArchitectureId;
|
2004-07-05 20:16:33 +04:00
|
|
|
};
|
|
|
|
#endif
|