cmGlobalVisualStudio11ARMGenerator.h 1.3 KB

12345678910111213141516171819202122232425262728293031323334
  1. /*============================================================================
  2. CMake - Cross Platform Makefile Generator
  3. Copyright 2000-2011 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 cmGlobalVisualStudio11ARMGenerator_h
  11. #define cmGlobalVisualStudio11ARMGenerator_h
  12. #include "cmGlobalVisualStudio11Generator.h"
  13. class cmGlobalVisualStudio11ARMGenerator :
  14. public cmGlobalVisualStudio11Generator
  15. {
  16. public:
  17. cmGlobalVisualStudio11ARMGenerator();
  18. static cmGlobalGeneratorFactory* NewFactory() {
  19. return new cmGlobalGeneratorSimpleFactory
  20. <cmGlobalVisualStudio11ARMGenerator>(); }
  21. ///! Get the name for the generator.
  22. virtual const char* GetName() const {
  23. return cmGlobalVisualStudio11ARMGenerator::GetActualName();}
  24. static const char* GetActualName() {return "Visual Studio 11 ARM";}
  25. /** Get the documentation entry for this generator. */
  26. static void GetDocumentation(cmDocumentationEntry& entry);
  27. };
  28. #endif