diff options
author | Brad King <brad.king@kitware.com> | 2006-07-11 17:23:02 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2006-07-11 17:23:02 (GMT) |
commit | 87ef95c71549a7aada8be6ed5d7f45f0aefc85ce (patch) | |
tree | f66b08d39d0942d7813e92dd0f843a45870fc468 /Source/cmLocalVisualStudio6Generator.h | |
parent | 9bf5af6e32570195b06df594c1cb07f8c7a6a83e (diff) | |
download | CMake-87ef95c71549a7aada8be6ed5d7f45f0aefc85ce.zip CMake-87ef95c71549a7aada8be6ed5d7f45f0aefc85ce.tar.gz CMake-87ef95c71549a7aada8be6ed5d7f45f0aefc85ce.tar.bz2 |
ENH: Made cmLocalVisualStudioGenerator a superclass of cmLocalVisualStudio6Generator. Implemented object file unique naming when multiple sources share the same name.
Diffstat (limited to 'Source/cmLocalVisualStudio6Generator.h')
-rw-r--r-- | Source/cmLocalVisualStudio6Generator.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmLocalVisualStudio6Generator.h b/Source/cmLocalVisualStudio6Generator.h index f2b4d13..cdc246f 100644 --- a/Source/cmLocalVisualStudio6Generator.h +++ b/Source/cmLocalVisualStudio6Generator.h @@ -17,7 +17,7 @@ #ifndef cmLocalVisualStudio6Generator_h #define cmLocalVisualStudio6Generator_h -#include "cmLocalGenerator.h" +#include "cmLocalVisualStudioGenerator.h" class cmMakeDepend; class cmTarget; @@ -31,7 +31,7 @@ class cmCustomCommand; * cmLocalVisualStudio6Generator produces a LocalUnix makefile from its * member this->Makefile. */ -class cmLocalVisualStudio6Generator : public cmLocalGenerator +class cmLocalVisualStudio6Generator : public cmLocalVisualStudioGenerator { public: ///! Set cache only and recurse to false by default. |