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 */
|
|
|
|
class cmGlobalVisualStudio11Generator:
|
|
|
|
public cmGlobalVisualStudio10Generator
|
|
|
|
{
|
|
|
|
public:
|
2012-11-19 22:05:55 +04:00
|
|
|
cmGlobalVisualStudio11Generator(const char* name,
|
|
|
|
const char* architectureId, const char* additionalPlatformDefinition);
|
|
|
|
static cmGlobalGeneratorFactory* NewFactory();
|
2011-09-23 17:07:40 +04:00
|
|
|
|
|
|
|
virtual void WriteSLNHeader(std::ostream& fout);
|
|
|
|
|
2011-11-14 18:42:51 +04:00
|
|
|
///! create the correct local generator
|
|
|
|
virtual cmLocalGenerator *CreateLocalGenerator();
|
|
|
|
|
2011-09-23 17:07:40 +04:00
|
|
|
/** TODO: VS 11 user macro support. */
|
|
|
|
virtual std::string GetUserMacrosDirectory() { return ""; }
|
|
|
|
protected:
|
|
|
|
virtual const char* GetIDEVersion() { return "11.0"; }
|
2012-12-03 22:53:43 +04:00
|
|
|
bool UseFolderProperty();
|
2012-11-19 22:05:55 +04:00
|
|
|
private:
|
|
|
|
class Factory;
|
2011-09-23 17:07:40 +04:00
|
|
|
};
|
|
|
|
#endif
|