cmGlobalBorlandMakefileGenerator: Do not inherit from NMake generator

The Borland generator re-implements every method the NMake generator
does, so there is no reason to inherit this way.  Instead inherit
directly from cmGlobalUnixMakefileGenerator3 like all the other
makefile generators do.
This commit is contained in:
Brad King 2015-05-06 14:48:28 -04:00 committed by Stephen Kelly
parent 9486769866
commit b317b38d33
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@
*
* cmGlobalBorlandMakefileGenerator manages nmake build process for a tree
*/
class cmGlobalBorlandMakefileGenerator : public cmGlobalNMakeMakefileGenerator
class cmGlobalBorlandMakefileGenerator : public cmGlobalUnixMakefileGenerator3
{
public:
cmGlobalBorlandMakefileGenerator();