cmGlobalVisualStudio10IA64Generator.h 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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 cmGlobalVisualStudio10IA64Generator_h
  11. #define cmGlobalVisualStudio10IA64Generator_h
  12. #include "cmGlobalVisualStudio10Generator.h"
  13. class cmGlobalVisualStudio10IA64Generator :
  14. public cmGlobalVisualStudio10Generator
  15. {
  16. public:
  17. cmGlobalVisualStudio10IA64Generator();
  18. static cmGlobalGeneratorFactory* NewFactory() {
  19. return new cmGlobalGeneratorSimpleFactory
  20. <cmGlobalVisualStudio10IA64Generator>(); }
  21. ///! Get the name for the generator.
  22. virtual const char* GetName() const {
  23. return cmGlobalVisualStudio10IA64Generator::GetActualName();}
  24. static const char* GetActualName() {return "Visual Studio 10 IA64";}
  25. virtual const char* GetPlatformName() const {return "Itanium";}
  26. /** Get the documentation entry for this generator. */
  27. static void GetDocumentation(cmDocumentationEntry& entry);
  28. virtual void AddPlatformDefinitions(cmMakefile* mf);
  29. virtual void EnableLanguage(std::vector<std::string>const& languages,
  30. cmMakefile *, bool optional);
  31. };
  32. #endif