2016-09-27 19:01:08 +00:00
|
|
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
2011-09-23 13:07:40 +00:00
|
|
|
#ifndef cmGlobalVisualStudio11Generator_h
|
|
|
|
#define cmGlobalVisualStudio11Generator_h
|
|
|
|
|
|
|
|
#include "cmGlobalVisualStudio10Generator.h"
|
|
|
|
|
|
|
|
/** \class cmGlobalVisualStudio11Generator */
|
2016-05-16 14:34:04 +00:00
|
|
|
class cmGlobalVisualStudio11Generator : public cmGlobalVisualStudio10Generator
|
2011-09-23 13:07:40 +00:00
|
|
|
{
|
|
|
|
public:
|
2015-05-24 09:31:14 +00:00
|
|
|
cmGlobalVisualStudio11Generator(cmake* cm, const std::string& name,
|
2016-05-16 14:34:04 +00:00
|
|
|
const std::string& platformName);
|
2012-11-19 18:05:55 +00:00
|
|
|
static cmGlobalGeneratorFactory* NewFactory();
|
2011-09-23 13:07:40 +00:00
|
|
|
|
2014-02-24 22:36:27 +00:00
|
|
|
virtual bool MatchesGeneratorName(const std::string& name) const;
|
2013-10-28 14:08:11 +00:00
|
|
|
|
2011-09-23 13:07:40 +00:00
|
|
|
virtual void WriteSLNHeader(std::ostream& fout);
|
|
|
|
|
|
|
|
protected:
|
2014-07-28 20:15:43 +00:00
|
|
|
virtual bool InitializeWindowsPhone(cmMakefile* mf);
|
|
|
|
virtual bool InitializeWindowsStore(cmMakefile* mf);
|
2014-11-13 19:47:01 +00:00
|
|
|
virtual bool SelectWindowsPhoneToolset(std::string& toolset) const;
|
|
|
|
virtual bool SelectWindowsStoreToolset(std::string& toolset) const;
|
|
|
|
|
2015-09-01 20:52:36 +00:00
|
|
|
// Used to verify that the Desktop toolset for the current generator is
|
|
|
|
// installed on the machine.
|
|
|
|
virtual bool IsWindowsDesktopToolsetInstalled() const;
|
|
|
|
|
2014-11-13 19:47:01 +00:00
|
|
|
// These aren't virtual because we need to check if the selected version
|
|
|
|
// of the toolset is installed
|
|
|
|
bool IsWindowsPhoneToolsetInstalled() const;
|
|
|
|
bool IsWindowsStoreToolsetInstalled() const;
|
|
|
|
|
2011-09-23 13:07:40 +00:00
|
|
|
virtual const char* GetIDEVersion() { return "11.0"; }
|
2012-12-03 18:53:43 +00:00
|
|
|
bool UseFolderProperty();
|
2013-08-04 18:15:35 +00:00
|
|
|
static std::set<std::string> GetInstalledWindowsCESDKs();
|
2014-07-29 15:43:19 +00:00
|
|
|
|
|
|
|
/** Return true if the configuration needs to be deployed */
|
2016-10-18 19:28:46 +00:00
|
|
|
virtual bool NeedsDeploy(cmStateEnums::TargetType type) const;
|
2016-05-16 14:34:04 +00:00
|
|
|
|
2012-11-19 18:05:55 +00:00
|
|
|
private:
|
|
|
|
class Factory;
|
2013-08-04 18:15:35 +00:00
|
|
|
friend class Factory;
|
2011-09-23 13:07:40 +00:00
|
|
|
};
|
|
|
|
#endif
|