cmLocalVisualStudio10Generator.h 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. /*=========================================================================
  2. Program: CMake - Cross-Platform Makefile Generator
  3. Module: $RCSfile$
  4. Language: C++
  5. Date: $Date$
  6. Version: $Revision$
  7. Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
  8. See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
  9. This software is distributed WITHOUT ANY WARRANTY; without even
  10. the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
  11. PURPOSE. See the above copyright notices for more information.
  12. =========================================================================*/
  13. #ifndef cmLocalVisualStudio10Generator_h
  14. #define cmLocalVisualStudio10Generator_h
  15. #include "cmLocalVisualStudio7Generator.h"
  16. /** \class cmLocalVisualStudio10Generator
  17. * \brief Write Visual Studio 10 project files.
  18. *
  19. * cmLocalVisualStudio10Generator produces a Visual Studio 10 project
  20. * file for each target in its directory.
  21. */
  22. class cmLocalVisualStudio10Generator : public cmLocalVisualStudio7Generator
  23. {
  24. public:
  25. ///! Set cache only and recurse to false by default.
  26. cmLocalVisualStudio10Generator();
  27. virtual ~cmLocalVisualStudio10Generator();
  28. /**
  29. * Generate the makefile for this directory.
  30. */
  31. virtual void Generate();
  32. private:
  33. };
  34. #endif