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
|
|
|
|
|
2017-08-25 18:39:02 +00:00
|
|
|
#include "cmConfigure.h" // IWYU pragma: keep
|
2016-11-25 21:54:58 +00:00
|
|
|
|
|
|
|
#include <iosfwd>
|
2020-01-02 16:07:09 +00:00
|
|
|
#include <memory>
|
2016-11-25 21:54:58 +00:00
|
|
|
#include <set>
|
|
|
|
#include <string>
|
|
|
|
|
2011-09-23 13:07:40 +00:00
|
|
|
#include "cmGlobalVisualStudio10Generator.h"
|
2016-11-25 21:54:58 +00:00
|
|
|
#include "cmStateTypes.h"
|
|
|
|
|
|
|
|
class cmGlobalGeneratorFactory;
|
|
|
|
class cmMakefile;
|
|
|
|
class cmake;
|
2011-09-23 13:07:40 +00:00
|
|
|
|
|
|
|
/** \class cmGlobalVisualStudio11Generator */
|
2016-05-16 14:34:04 +00:00
|
|
|
class cmGlobalVisualStudio11Generator : public cmGlobalVisualStudio10Generator
|
2011-09-23 13:07:40 +00:00
|
|
|
{
|
|
|
|
public:
|
2020-01-02 16:07:09 +00:00
|
|
|
static std::unique_ptr<cmGlobalGeneratorFactory> NewFactory();
|
2011-09-23 13:07:40 +00:00
|
|
|
|
2017-12-16 02:17:49 +00:00
|
|
|
bool MatchesGeneratorName(const std::string& name) const override;
|
2013-10-28 14:08:11 +00:00
|
|
|
|
2011-09-23 13:07:40 +00:00
|
|
|
protected:
|
2019-01-10 13:37:40 +00:00
|
|
|
cmGlobalVisualStudio11Generator(cmake* cm, const std::string& name,
|
|
|
|
std::string const& platformInGeneratorName);
|
|
|
|
|
2017-12-16 02:17:49 +00:00
|
|
|
bool InitializeWindowsPhone(cmMakefile* mf) override;
|
|
|
|
bool InitializeWindowsStore(cmMakefile* mf) override;
|
|
|
|
bool SelectWindowsPhoneToolset(std::string& toolset) const override;
|
|
|
|
bool SelectWindowsStoreToolset(std::string& toolset) const override;
|
2014-11-13 19:47:01 +00:00
|
|
|
|
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;
|
|
|
|
|
2018-12-30 17:32:55 +00:00
|
|
|
bool UseFolderProperty() const override;
|
2013-08-04 18:15:35 +00:00
|
|
|
static std::set<std::string> GetInstalledWindowsCESDKs();
|
2014-07-29 15:43:19 +00:00
|
|
|
|
2019-02-19 23:02:34 +00:00
|
|
|
/** Return true if target system supports debugging deployment. */
|
|
|
|
bool TargetSystemSupportsDeployment() const override;
|
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
|