You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

54 lines
1.9 KiB

  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 cmGlobalVisualStudio8Win64Generator_h
  14. #define cmGlobalVisualStudio8Win64Generator_h
  15. #include "cmGlobalVisualStudio8Generator.h"
  16. /** \class cmGlobalVisualStudio8Win64Generator
  17. * \brief Write a Unix makefiles.
  18. *
  19. * cmGlobalVisualStudio8Win64Generator manages UNIX build process for a tree
  20. */
  21. class cmGlobalVisualStudio8Win64Generator :
  22. public cmGlobalVisualStudio8Generator
  23. {
  24. public:
  25. cmGlobalVisualStudio8Win64Generator();
  26. static cmGlobalGenerator* New() {
  27. return new cmGlobalVisualStudio8Win64Generator; }
  28. ///! Get the name for the generator.
  29. virtual const char* GetName() const {
  30. return cmGlobalVisualStudio8Win64Generator::GetActualName();}
  31. static const char* GetActualName() {return "Visual Studio 8 2005 Win64";}
  32. /** Get the documentation entry for this generator. */
  33. virtual void GetDocumentation(cmDocumentationEntry& entry) const;
  34. ///! create the correct local generator
  35. virtual cmLocalGenerator *CreateLocalGenerator();
  36. /**
  37. * Try to determine system infomation such as shared library
  38. * extension, pthreads, byte order etc.
  39. */
  40. virtual void EnableLanguage(std::vector<std::string>const& languages,
  41. cmMakefile *, bool optional);
  42. };
  43. #endif