From db7d1112ea869fecf5de7ede95bb210e0e90b290 Mon Sep 17 00:00:00 2001 From: Stephen Kelly Date: Wed, 11 Dec 2013 17:21:51 +0100 Subject: [PATCH] cmLocalGenerator: Remove VTK include hack (#11338). This exists for pre-CMake 2.4 compatibility. All such compatibility code was removed for CMake 3.0, so remove this too. --- Source/cmLocalGenerator.cxx | 21 --------------------- 1 file changed, 21 deletions(-) diff --git a/Source/cmLocalGenerator.cxx b/Source/cmLocalGenerator.cxx index 402855c3b..455f542ff 100644 --- a/Source/cmLocalGenerator.cxx +++ b/Source/cmLocalGenerator.cxx @@ -1477,27 +1477,6 @@ void cmLocalGenerator::GetIncludeDirectories(std::vector& dirs, includeBinaryDir = true; } - // Hack for VTK 4.0 - 4.4 which depend on the old behavior but do - // not set the backwards compatibility level automatically. - const char* vtkSourceDir = - this->Makefile->GetDefinition("VTK_SOURCE_DIR"); - if(vtkSourceDir) - { - const char* vtk_major = - this->Makefile->GetDefinition("VTK_MAJOR_VERSION"); - const char* vtk_minor = - this->Makefile->GetDefinition("VTK_MINOR_VERSION"); - vtk_major = vtk_major? vtk_major : "4"; - vtk_minor = vtk_minor? vtk_minor : "4"; - int vmajor = 0; - int vminor = 0; - if(sscanf(vtk_major, "%d", &vmajor) && - sscanf(vtk_minor, "%d", &vminor) && vmajor == 4 && vminor <= 4) - { - includeSourceDir = true; - } - } - // Do not repeat an include path. std::set emitted;