cmake/Source/cmLocalVisualStudio10Generator.h

47 lines
1.5 KiB
C
Raw Normal View History

2009-10-04 10:30:41 +03:00
/*============================================================================
CMake - Cross Platform Makefile Generator
Copyright 2000-2009 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 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.
2012-02-18 12:40:36 +02:00
cmLocalVisualStudio10Generator(VSVersion v);
2009-10-04 10:30:41 +03:00
virtual ~cmLocalVisualStudio10Generator();
/**
2013-03-16 19:13:01 +02:00
* Generate the makefile for this directory.
2009-10-04 10:30:41 +03:00
*/
virtual void Generate();
2015-04-27 22:25:09 +02:00
virtual void ReadAndStoreExternalGUID(const std::string& name,
2009-10-04 10:30:41 +03:00
const char* path);
2011-01-16 11:35:12 +01:00
protected:
2011-06-19 15:41:06 +03:00
virtual const char* ReportErrorLabel() const;
virtual bool CustomCommandUseLocal() const { return true; }
2011-01-16 11:35:12 +01:00
2009-10-04 10:30:41 +03:00
private:
};
#endif