summaryrefslogtreecommitdiffstats
path: root/Source/cmGlobalGenerator.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2014-07-14 18:38:58 (GMT)
committerBrad King <brad.king@kitware.com>2014-07-14 18:38:58 (GMT)
commitd57be904ae997e44ec9ac3b44722277f81936577 (patch)
treec83237f4a18176a55a7cc53816a65470b553d210 /Source/cmGlobalGenerator.h
parentb3b44d138e50b2c5b4a4d327aae9290dba56862d (diff)
downloadCMake-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/cmGlobalGenerator.h')
-rw-r--r--Source/cmGlobalGenerator.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/cmGlobalGenerator.h b/Source/cmGlobalGenerator.h
index 6403429..160a8fb 100644
--- a/Source/cmGlobalGenerator.h
+++ b/Source/cmGlobalGenerator.h
@@ -214,6 +214,9 @@ public:
*/
virtual void FindMakeProgram(cmMakefile*);
+ /** Is this the Visual Studio 6 generator? */
+ virtual bool IsForVS6() const { return false; }
+
///! Find a target by name by searching the local generators.
cmTarget* FindTarget(const std::string& name,
bool excludeAliases = false) const;