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