cmGlobalVisualStudio9Win64Generator.h 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. /*============================================================================
  2. CMake - Cross Platform Makefile Generator
  3. Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
  4. Distributed under the OSI-approved BSD License (the "License");
  5. see accompanying file Copyright.txt for details.
  6. This software is distributed WITHOUT ANY WARRANTY; without even the
  7. implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  8. See the License for more information.
  9. ============================================================================*/
  10. #ifndef cmGlobalVisualStudio9Win64Generator_h
  11. #define cmGlobalVisualStudio9Win64Generator_h
  12. #include "cmGlobalVisualStudio9Generator.h"
  13. /** \class cmGlobalVisualStudio8Win64Generator
  14. * \brief Write a Unix makefiles.
  15. *
  16. * cmGlobalVisualStudio8Win64Generator manages UNIX build process for a tree
  17. */
  18. class cmGlobalVisualStudio9Win64Generator :
  19. public cmGlobalVisualStudio9Generator
  20. {
  21. public:
  22. cmGlobalVisualStudio9Win64Generator();
  23. static cmGlobalGeneratorFactory* NewFactory() {
  24. return new cmGlobalGeneratorSimpleFactory
  25. <cmGlobalVisualStudio9Win64Generator>(); }
  26. ///! Get the name for the generator.
  27. virtual const char* GetName() const {
  28. return cmGlobalVisualStudio9Win64Generator::GetActualName();}
  29. static const char* GetActualName() {return "Visual Studio 9 2008 Win64";}
  30. virtual const char* GetPlatformName() const {return "x64";}
  31. /** Get the documentation entry for this generator. */
  32. static void GetDocumentation(cmDocumentationEntry& entry);
  33. };
  34. #endif