2016-09-27 22:01:08 +03:00
|
|
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
2009-06-26 00:41:57 +04:00
|
|
|
#ifndef cmLocalVisualStudio10Generator_h
|
|
|
|
#define cmLocalVisualStudio10Generator_h
|
|
|
|
|
|
|
|
#include "cmLocalVisualStudio7Generator.h"
|
|
|
|
|
|
|
|
/** \class cmLocalVisualStudio10Generator
|
|
|
|
* \brief Write Visual Studio 10 project files.
|
|
|
|
*
|
|
|
|
* cmLocalVisualStudio10Generator produces a Visual Studio 10 project
|
|
|
|
* file for each target in its directory.
|
|
|
|
*/
|
|
|
|
class cmLocalVisualStudio10Generator : public cmLocalVisualStudio7Generator
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
///! Set cache only and recurse to false by default.
|
2015-08-02 12:41:51 +03:00
|
|
|
cmLocalVisualStudio10Generator(cmGlobalGenerator* gg, cmMakefile* mf);
|
2009-06-26 00:41:57 +04:00
|
|
|
|
|
|
|
virtual ~cmLocalVisualStudio10Generator();
|
|
|
|
|
|
|
|
/**
|
2012-08-13 21:42:58 +04:00
|
|
|
* Generate the makefile for this directory.
|
2009-06-26 00:41:57 +04:00
|
|
|
*/
|
|
|
|
virtual void Generate();
|
2014-02-22 04:05:55 +04:00
|
|
|
virtual void ReadAndStoreExternalGUID(const std::string& name,
|
2009-07-14 00:58:24 +04:00
|
|
|
const char* path);
|
2010-12-17 19:11:55 +03:00
|
|
|
|
|
|
|
protected:
|
2011-04-08 18:40:57 +04:00
|
|
|
virtual const char* ReportErrorLabel() const;
|
2011-04-11 18:07:40 +04:00
|
|
|
virtual bool CustomCommandUseLocal() const { return true; }
|
2010-12-17 19:11:55 +03:00
|
|
|
|
2009-06-26 00:41:57 +04:00
|
|
|
private:
|
|
|
|
};
|
|
|
|
#endif
|