2016-09-27 15:01:08 -04: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 09:07:40 -04:00
|
|
|
#ifndef cmGlobalVisualStudio11Generator_h
|
|
|
|
#define cmGlobalVisualStudio11Generator_h
|
|
|
|
|
|
|
|
#include "cmGlobalVisualStudio10Generator.h"
|
|
|
|
|
|
|
|
/** \class cmGlobalVisualStudio11Generator */
|
2016-05-16 10:34:04 -04:00
|
|
|
class cmGlobalVisualStudio11Generator : public cmGlobalVisualStudio10Generator
|
2011-09-23 09:07:40 -04:00
|
|
|
{
|
|
|
|
public:
|
2015-05-24 11:31:14 +02:00
|
|
|
cmGlobalVisualStudio11Generator(cmake* cm, const std::string& name,
|
2016-05-16 10:34:04 -04:00
|
|
|
const std::string& platformName);
|
2012-11-19 19:05:55 +01:00
|
|
|
static cmGlobalGeneratorFactory* NewFactory();
|
2011-09-23 09:07:40 -04:00
|
|
|
|
2014-02-24 17:36:27 -05:00
|
|
|
virtual bool MatchesGeneratorName(const std::string& name) const;
|
2013-10-28 10:08:11 -04:00
|
|
|
|
2011-09-23 09:07:40 -04:00
|
|
|
virtual void WriteSLNHeader(std::ostream& fout);
|
|
|
|
|
|
|
|
protected:
|
2014-07-28 16:15:43 -04:00
|
|
|
virtual bool InitializeWindowsPhone(cmMakefile* mf);
|
|
|
|
virtual bool InitializeWindowsStore(cmMakefile* mf);
|
2014-11-13 11:47:01 -08:00
|
|
|
virtual bool SelectWindowsPhoneToolset(std::string& toolset) const;
|
|
|
|
virtual bool SelectWindowsStoreToolset(std::string& toolset) const;
|
|
|
|
|
2015-09-01 13:52:36 -07:00
|
|
|
// Used to verify that the Desktop toolset for the current generator is
|
|
|
|
// installed on the machine.
|
|
|
|
virtual bool IsWindowsDesktopToolsetInstalled() const;
|
|
|
|
|
2014-11-13 11:47:01 -08: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 09:07:40 -04:00
|
|
|
virtual const char* GetIDEVersion() { return "11.0"; }
|
2012-12-03 13:53:43 -05:00
|
|
|
bool UseFolderProperty();
|
2013-08-04 20:15:35 +02:00
|
|
|
static std::set<std::string> GetInstalledWindowsCESDKs();
|
2014-07-29 11:43:19 -04:00
|
|
|
|
|
|
|
/** Return true if the configuration needs to be deployed */
|
2015-10-08 00:21:51 +02:00
|
|
|
virtual bool NeedsDeploy(cmState::TargetType type) const;
|
2016-05-16 10:34:04 -04:00
|
|
|
|
2012-11-19 19:05:55 +01:00
|
|
|
private:
|
|
|
|
class Factory;
|
2013-08-04 20:15:35 +02:00
|
|
|
friend class Factory;
|
2011-09-23 09:07:40 -04:00
|
|
|
};
|
|
|
|
#endif
|