change the name to be closer to NMake Makefiles which is basically what jom parses

This commit is contained in:
Bill Hoffman 2010-01-08 13:31:37 -05:00
parent 6faa4ae15e
commit 4cf560fb8b
1 changed files with 3 additions and 1 deletions

View File

@ -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;