summaryrefslogtreecommitdiffstats
path: root/Source/cmGlobalJOMMakefileGenerator.h
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2010-01-08 18:31:37 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2010-01-08 18:31:37 (GMT)
commit4cf560fb8bc541a4e008ee50b8a55c95492048fa (patch)
tree5638858d4bac91796fe09d92fcecf87d1641b5be /Source/cmGlobalJOMMakefileGenerator.h
parent6faa4ae15e372854aee542e98f06b5822b154d5a (diff)
downloadCMake-4cf560fb8bc541a4e008ee50b8a55c95492048fa.zip
CMake-4cf560fb8bc541a4e008ee50b8a55c95492048fa.tar.gz
CMake-4cf560fb8bc541a4e008ee50b8a55c95492048fa.tar.bz2
change the name to be closer to NMake Makefiles which is basically what jom parses
Diffstat (limited to 'Source/cmGlobalJOMMakefileGenerator.h')
-rw-r--r--Source/cmGlobalJOMMakefileGenerator.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/cmGlobalJOMMakefileGenerator.h b/Source/cmGlobalJOMMakefileGenerator.h
index 98df5f5..08be4b4 100644
--- a/Source/cmGlobalJOMMakefileGenerator.h
+++ b/Source/cmGlobalJOMMakefileGenerator.h
@@ -28,7 +28,9 @@ public:
///! Get the name for the generator.
virtual const char* GetName() const {
return cmGlobalJOMMakefileGenerator::GetActualName();}
- static const char* GetActualName() {return "JOM Makefiles";}
+ // use NMake Makefiles in the name so that scripts/tests that depend on the
+ // name NMake Makefiles will work
+ static const char* GetActualName() {return "NMake Makefiles JOM";}
/** Get the documentation entry for this generator. */
virtual void GetDocumentation(cmDocumentationEntry& entry) const;