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:
|
2012-11-19 22:05:55 +04:00
|
|
|
cmGlobalVisualStudio8Generator(const char* name,
|
2013-08-05 14:57:58 +04:00
|
|
|
const char* platformName, const char* additionalPlatformDefinition);
|
2012-11-19 22:05:55 +04:00
|
|
|
static cmGlobalGeneratorFactory* NewFactory();
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2004-07-05 20:16:33 +04:00
|
|
|
///! Get the name for the generator.
|
2012-11-20 15:16:09 +04:00
|
|
|
virtual const char* GetName() const {return this->Name.c_str();}
|
2004-07-05 20:16:33 +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
|
|
|
|
2004-07-05 20:16:33 +04:00
|
|
|
///! Create a local generator appropriate to this Global Generator
|
|
|
|
virtual cmLocalGenerator *CreateLocalGenerator();
|
|
|
|
|
2012-11-20 14:33:34 +04:00
|
|
|
virtual void AddPlatformDefinitions(cmMakefile* mf);
|
|
|
|
|
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);
|
|
|
|
|
2012-11-20 16:12:27 +04:00
|
|
|
/** Return true if building for Windows CE */
|
|
|
|
virtual bool TargetsWindowsCE() const {
|
|
|
|
return !this->WindowsCEVersion.empty(); }
|
|
|
|
|
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
|
|
|
|
2013-08-27 22:15:49 +04:00
|
|
|
bool AddCheckTarget();
|
2009-10-19 18:47:34 +04:00
|
|
|
|
2009-07-29 19:28:55 +04:00
|
|
|
static cmIDEFlagTable const* GetExtraFlagTableVS8();
|
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);
|
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);
|
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);
|
2012-11-19 22:05:55 +04:00
|
|
|
|
2012-11-20 15:16:09 +04:00
|
|
|
std::string Name;
|
2012-11-20 16:12:27 +04:00
|
|
|
std::string WindowsCEVersion;
|
2012-11-19 22:05:55 +04:00
|
|
|
|
|
|
|
private:
|
|
|
|
class Factory;
|
2012-11-20 16:12:27 +04:00
|
|
|
friend class Factory;
|
2004-07-05 20:16:33 +04:00
|
|
|
};
|
|
|
|
#endif
|