diff options
author | Brad King <brad.king@kitware.com> | 2014-07-14 18:38:58 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2014-07-14 18:38:58 (GMT) |
commit | d57be904ae997e44ec9ac3b44722277f81936577 (patch) | |
tree | c83237f4a18176a55a7cc53816a65470b553d210 /Source/cmGlobalVisualStudio6Generator.h | |
parent | b3b44d138e50b2c5b4a4d327aae9290dba56862d (diff) | |
download | CMake-d57be904ae997e44ec9ac3b44722277f81936577.zip CMake-d57be904ae997e44ec9ac3b44722277f81936577.tar.gz CMake-d57be904ae997e44ec9ac3b44722277f81936577.tar.bz2 |
cmTarget: Run old-style link dependencies only for VS 6
Invoke it at runtime only with the VS 6 generator. No other generators
need it.
Diffstat (limited to 'Source/cmGlobalVisualStudio6Generator.h')
-rw-r--r-- | Source/cmGlobalVisualStudio6Generator.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/cmGlobalVisualStudio6Generator.h b/Source/cmGlobalVisualStudio6Generator.h index 2797e11..b2fd28f 100644 --- a/Source/cmGlobalVisualStudio6Generator.h +++ b/Source/cmGlobalVisualStudio6Generator.h @@ -91,6 +91,8 @@ public: virtual void FindMakeProgram(cmMakefile*); + virtual bool IsForVS6() const { return true; } + protected: virtual const char* GetIDEVersion() { return "6.0"; } private: |