summaryrefslogtreecommitdiffstats
path: root/Source/cmGlobalVisualStudio11ARMGenerator.h
diff options
context:
space:
mode:
authorMinmin Gong <minmin.gong@gmail.com>2012-05-09 08:08:00 (GMT)
committerBrad King <brad.king@kitware.com>2012-05-09 13:12:13 (GMT)
commit0fa3d093693642a2b6535b93ea99344397f79267 (patch)
tree097012fc1239c1e2000da07fe027ae9044a5c434 /Source/cmGlobalVisualStudio11ARMGenerator.h
parentc5a67a7fec2dde8caba8044de3699331a89db020 (diff)
downloadCMake-0fa3d093693642a2b6535b93ea99344397f79267.zip
CMake-0fa3d093693642a2b6535b93ea99344397f79267.tar.gz
CMake-0fa3d093693642a2b6535b93ea99344397f79267.tar.bz2
VS11: Add ARM architecture generator (#13077)
Diffstat (limited to 'Source/cmGlobalVisualStudio11ARMGenerator.h')
-rw-r--r--Source/cmGlobalVisualStudio11ARMGenerator.h37
1 files changed, 37 insertions, 0 deletions
diff --git a/Source/cmGlobalVisualStudio11ARMGenerator.h b/Source/cmGlobalVisualStudio11ARMGenerator.h
new file mode 100644
index 0000000..77e1429
--- /dev/null
+++ b/Source/cmGlobalVisualStudio11ARMGenerator.h
@@ -0,0 +1,37 @@
+/*============================================================================
+ CMake - Cross Platform Makefile Generator
+ Copyright 2000-2011 Kitware, Inc., Insight Software Consortium
+
+ Distributed under the OSI-approved BSD License (the "License");
+ see accompanying file Copyright.txt for details.
+
+ This software is distributed WITHOUT ANY WARRANTY; without even the
+ implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+ See the License for more information.
+============================================================================*/
+#ifndef cmGlobalVisualStudio11ARMGenerator_h
+#define cmGlobalVisualStudio11ARMGenerator_h
+
+#include "cmGlobalVisualStudio11Generator.h"
+
+class cmGlobalVisualStudio11ARMGenerator :
+ public cmGlobalVisualStudio11Generator
+{
+public:
+ cmGlobalVisualStudio11ARMGenerator() {}
+ static cmGlobalGenerator* New() {
+ return new cmGlobalVisualStudio11ARMGenerator; }
+
+ ///! Get the name for the generator.
+ virtual const char* GetName() const {
+ return cmGlobalVisualStudio11ARMGenerator::GetActualName();}
+ static const char* GetActualName() {return "Visual Studio 11 ARM";}
+
+ virtual const char* GetPlatformName() const {return "ARM";}
+
+ /** Get the documentation entry for this generator. */
+ virtual void GetDocumentation(cmDocumentationEntry& entry) const;
+
+ virtual void AddPlatformDefinitions(cmMakefile* mf);
+};
+#endif