From 989509352458e08355e6ae2e0cbec40c7de7d2e7 Mon Sep 17 00:00:00 2001 From: Ozan Tonkal Date: Sun, 8 Sep 2013 19:29:59 +0200 Subject: [PATCH] check if vtk 5.10.0 exists, if not require 6.0.0 --- modules/viz/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/viz/CMakeLists.txt b/modules/viz/CMakeLists.txt index 9a486fb82..fbc41678e 100644 --- a/modules/viz/CMakeLists.txt +++ b/modules/viz/CMakeLists.txt @@ -12,7 +12,7 @@ macro(find_qvtk) endmacro() macro(find_vtk) - find_package(VTK 5.10.0 REQUIRED) + find_package(VTK 5.10.0) if(NOT VTK_FOUND) find_package(VTK 6.0.0 REQUIRED) endif()