summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2024-05-10 18:20:52 (GMT)
committerBrad King <brad.king@kitware.com>2024-05-10 18:20:52 (GMT)
commitf106df8f96011492c892ed007602c3efe7148efa (patch)
tree5d76342d1149aeec4e16a53c46e8de4617362cbd
parente89a4378ec4860eb48510890a38996bfe99b6055 (diff)
downloadCMake-f106df8f96011492c892ed007602c3efe7148efa.zip
CMake-f106df8f96011492c892ed007602c3efe7148efa.tar.gz
CMake-f106df8f96011492c892ed007602c3efe7148efa.tar.bz2
cmGlobalVisualStudio8Generator: Remove unused Configure method override
It has not been needed since commit c85367f408 (VS: Compute project GUIDs deterministically, 2015-06-02, v3.4.0-rc1~496^2)
-rw-r--r--Source/cmGlobalVisualStudio8Generator.cxx5
-rw-r--r--Source/cmGlobalVisualStudio8Generator.h6
2 files changed, 0 insertions, 11 deletions
diff --git a/Source/cmGlobalVisualStudio8Generator.cxx b/Source/cmGlobalVisualStudio8Generator.cxx
index 0d357ad..b1fba8f 100644
--- a/Source/cmGlobalVisualStudio8Generator.cxx
+++ b/Source/cmGlobalVisualStudio8Generator.cxx
@@ -225,11 +225,6 @@ std::string cmGlobalVisualStudio8Generator::GetGenerateStampList()
return "generate.stamp.list";
}
-void cmGlobalVisualStudio8Generator::Configure()
-{
- this->cmGlobalVisualStudio7Generator::Configure();
-}
-
bool cmGlobalVisualStudio8Generator::UseFolderProperty() const
{
// NOLINTNEXTLINE(bugprone-parent-virtual-call)
diff --git a/Source/cmGlobalVisualStudio8Generator.h b/Source/cmGlobalVisualStudio8Generator.h
index cb0ea76..931de40 100644
--- a/Source/cmGlobalVisualStudio8Generator.h
+++ b/Source/cmGlobalVisualStudio8Generator.h
@@ -40,12 +40,6 @@ public:
cm::optional<std::string> const& GetTargetFrameworkIdentifier() const;
cm::optional<std::string> const& GetTargetFrameworkTargetsVersion() const;
- /**
- * Override Configure and Generate to add the build-system check
- * target.
- */
- void Configure() override;
-
/** Return true if the target project file should have the option
LinkLibraryDependencies and link to .sln dependencies. */
bool NeedLinkLibraryDependencies(cmGeneratorTarget* target) override;