summaryrefslogtreecommitdiffstats
path: root/Source/cmQtAutoGeneratorInitializer.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2017-04-19 18:53:47 (GMT)
committerBrad King <brad.king@kitware.com>2017-04-19 18:54:57 (GMT)
commita4452fd82df79c579ab3996e3c56c59964bf69ea (patch)
treea9750879039bda20c34d3d92e46b098f8ba955b2 /Source/cmQtAutoGeneratorInitializer.cxx
parent6e66fe5f977c3d8e0a4b24236a00b31f325ef5a3 (diff)
downloadCMake-a4452fd82df79c579ab3996e3c56c59964bf69ea.zip
CMake-a4452fd82df79c579ab3996e3c56c59964bf69ea.tar.gz
CMake-a4452fd82df79c579ab3996e3c56c59964bf69ea.tar.bz2
cmGlobalVisualStudioGenerator: Drop VS7 enumeration value
We no longer support the VS 7.0 (.NET 2002) IDE, so drop the enumeration value corresponding to its version.
Diffstat (limited to 'Source/cmQtAutoGeneratorInitializer.cxx')
-rw-r--r--Source/cmQtAutoGeneratorInitializer.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmQtAutoGeneratorInitializer.cxx b/Source/cmQtAutoGeneratorInitializer.cxx
index e6d9a9f..82de9a2 100644
--- a/Source/cmQtAutoGeneratorInitializer.cxx
+++ b/Source/cmQtAutoGeneratorInitializer.cxx
@@ -681,11 +681,11 @@ void cmQtAutoGeneratorInitializer::InitializeAutogenTarget(
if (gg->GetName().find("Visual Studio") != std::string::npos) {
cmGlobalVisualStudioGenerator* vsgg =
static_cast<cmGlobalVisualStudioGenerator*>(gg);
- // Under VS >= 7 use a PRE_BUILD event instead of a separate target to
+ // Under VS use a PRE_BUILD event instead of a separate target to
// reduce the number of targets loaded into the IDE.
// This also works around a VS 11 bug that may skip updating the target:
// https://connect.microsoft.com/VisualStudio/feedback/details/769495
- usePRE_BUILD = vsgg->GetVersion() >= cmGlobalVisualStudioGenerator::VS7;
+ usePRE_BUILD = true;
}
#endif