2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2007-04-04 19:22:14 +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.
|
2007-04-04 19:22:14 +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.
|
|
|
|
============================================================================*/
|
2007-04-04 19:22:14 +04:00
|
|
|
#ifndef cmGlobalVisualStudioGenerator_h
|
|
|
|
#define cmGlobalVisualStudioGenerator_h
|
|
|
|
|
|
|
|
#include "cmGlobalGenerator.h"
|
|
|
|
|
|
|
|
/** \class cmGlobalVisualStudioGenerator
|
|
|
|
* \brief Base class for global Visual Studio generators.
|
|
|
|
*
|
|
|
|
* cmGlobalVisualStudioGenerator provides functionality common to all
|
|
|
|
* global Visual Studio generators.
|
|
|
|
*/
|
|
|
|
class cmGlobalVisualStudioGenerator : public cmGlobalGenerator
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
cmGlobalVisualStudioGenerator();
|
|
|
|
virtual ~cmGlobalVisualStudioGenerator();
|
2007-04-04 22:50:35 +04:00
|
|
|
|
2007-04-10 21:09:03 +04:00
|
|
|
/**
|
|
|
|
* Basic generate implementation for all VS generators.
|
|
|
|
*/
|
|
|
|
virtual void Generate();
|
|
|
|
|
2007-11-16 15:01:58 +03:00
|
|
|
/**
|
|
|
|
* Configure CMake's Visual Studio macros file into the user's Visual
|
|
|
|
* Studio macros directory.
|
|
|
|
*/
|
|
|
|
virtual void ConfigureCMakeVisualStudioMacros();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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();
|
|
|
|
|
2007-11-19 21:44:51 +03:00
|
|
|
enum MacroName {MacroReload, MacroStop};
|
|
|
|
|
2007-11-16 15:01:58 +03:00
|
|
|
/**
|
|
|
|
* Call the ReloadProjects macro if necessary based on
|
|
|
|
* GetFilesReplacedDuringGenerate results.
|
|
|
|
*/
|
2007-11-19 21:44:51 +03:00
|
|
|
virtual void CallVisualStudioMacro(MacroName m,
|
|
|
|
const char* vsSolutionFile = 0);
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2008-04-30 21:26:04 +04:00
|
|
|
// return true if target is fortran only
|
|
|
|
bool TargetIsFortranOnly(cmTarget& t);
|
2007-11-16 15:01:58 +03:00
|
|
|
|
2009-09-16 19:44:08 +04:00
|
|
|
/** Get the top-level registry key for this VS version. */
|
|
|
|
std::string GetRegistryBase();
|
2009-12-04 20:09:01 +03:00
|
|
|
|
2012-11-20 15:18:43 +04:00
|
|
|
/** Get the top-level registry key for the given VS version. */
|
|
|
|
static std::string GetRegistryBase(const char* version);
|
|
|
|
|
2009-12-04 20:09:01 +03:00
|
|
|
/** Return true if the generated build tree may contain multiple builds.
|
|
|
|
i.e. "Can I build Debug and Release in the same tree?" */
|
|
|
|
virtual bool IsMultiConfig() { return true; }
|
|
|
|
|
2012-11-20 15:38:06 +04:00
|
|
|
/** Return true if building for Windows CE */
|
|
|
|
virtual bool TargetsWindowsCE() const { return false; }
|
|
|
|
|
2010-08-25 18:26:25 +04:00
|
|
|
class TargetSet: public std::set<cmTarget*> {};
|
2009-10-01 00:02:58 +04:00
|
|
|
struct TargetCompare
|
|
|
|
{
|
|
|
|
bool operator()(cmTarget const* l, cmTarget const* r) const;
|
|
|
|
};
|
2010-08-25 18:26:25 +04:00
|
|
|
class OrderedTargetDependSet;
|
2009-10-01 00:02:58 +04:00
|
|
|
|
2010-10-07 17:54:24 +04:00
|
|
|
protected:
|
|
|
|
// Does this VS version link targets to each other if there are
|
|
|
|
// dependencies in the SLN file? This was done for VS versions
|
|
|
|
// below 8.
|
|
|
|
virtual bool VSLinksDependencies() const { return true; }
|
|
|
|
|
|
|
|
virtual const char* GetIDEVersion() = 0;
|
|
|
|
|
2012-07-21 17:37:46 +04:00
|
|
|
virtual void AddPlatformDefinitions(cmMakefile* mf);
|
|
|
|
|
2010-08-25 02:39:36 +04:00
|
|
|
virtual bool ComputeTargetDepends();
|
|
|
|
class VSDependSet: public std::set<cmStdString> {};
|
|
|
|
class VSDependMap: public std::map<cmTarget*, VSDependSet> {};
|
|
|
|
VSDependMap VSTargetDepends;
|
|
|
|
void ComputeVSTargetDepends(cmTarget&);
|
2009-10-21 00:38:37 +04:00
|
|
|
|
|
|
|
bool CheckTargetLinks(cmTarget& target, const char* name);
|
2010-08-25 02:47:56 +04:00
|
|
|
std::string GetUtilityForTarget(cmTarget& target, const char*);
|
|
|
|
virtual std::string WriteUtilityDepend(cmTarget*) = 0;
|
|
|
|
std::string GetUtilityDepend(cmTarget* target);
|
|
|
|
typedef std::map<cmTarget*, cmStdString> UtilityDependsMap;
|
|
|
|
UtilityDependsMap UtilityDepends;
|
2012-11-20 14:37:32 +04:00
|
|
|
std::string ArchitectureId;
|
2012-11-19 20:21:47 +04:00
|
|
|
const char* AdditionalPlatformDefinition;
|
2012-07-21 17:37:46 +04:00
|
|
|
|
2010-08-25 18:26:25 +04:00
|
|
|
private:
|
2012-03-07 23:04:33 +04:00
|
|
|
void ComputeTargetObjects(cmGeneratorTarget* gt) const;
|
|
|
|
|
2010-08-25 18:26:25 +04:00
|
|
|
void FollowLinkDepends(cmTarget* target, std::set<cmTarget*>& linked);
|
|
|
|
|
|
|
|
class TargetSetMap: public std::map<cmTarget*, TargetSet> {};
|
|
|
|
TargetSetMap TargetLinkClosure;
|
|
|
|
void FillLinkClosure(cmTarget* target, TargetSet& linked);
|
|
|
|
TargetSet const& GetTargetLinkClosure(cmTarget* target);
|
|
|
|
};
|
|
|
|
|
|
|
|
class cmGlobalVisualStudioGenerator::OrderedTargetDependSet:
|
|
|
|
public std::multiset<cmTargetDepend,
|
|
|
|
cmGlobalVisualStudioGenerator::TargetCompare>
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
typedef cmGlobalGenerator::TargetDependSet TargetDependSet;
|
|
|
|
typedef cmGlobalVisualStudioGenerator::TargetSet TargetSet;
|
|
|
|
OrderedTargetDependSet(TargetDependSet const&);
|
|
|
|
OrderedTargetDependSet(TargetSet const&);
|
2007-04-04 19:22:14 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|