cmGlobalVisualStudio8Win64Generator.h 1.8 KB

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