2014-02-02 22:56:55 +08:00
|
|
|
# VTK 6.x components
|
2015-12-28 23:27:10 +08:00
|
|
|
find_package(VTK QUIET COMPONENTS vtkInteractionStyle vtkRenderingLOD vtkIOPLY vtkFiltersTexture vtkRenderingFreeType vtkIOExport NO_MODULE)
|
|
|
|
IF(VTK_FOUND)
|
|
|
|
IF(VTK_RENDERING_BACKEND) #in vtk 7, the rendering backend is exported as a var.
|
2016-10-20 23:02:18 +08:00
|
|
|
find_package(VTK QUIET COMPONENTS vtkRendering${VTK_RENDERING_BACKEND} vtkInteractionStyle vtkRenderingLOD vtkIOPLY vtkFiltersTexture vtkRenderingFreeType vtkIOExport vtkIOGeometry NO_MODULE)
|
2015-12-28 23:27:10 +08:00
|
|
|
ELSE(VTK_RENDERING_BACKEND)
|
|
|
|
find_package(VTK QUIET COMPONENTS vtkRenderingOpenGL vtkInteractionStyle vtkRenderingLOD vtkIOPLY vtkFiltersTexture vtkRenderingFreeType vtkIOExport NO_MODULE)
|
|
|
|
ENDIF(VTK_RENDERING_BACKEND)
|
|
|
|
ENDIF(VTK_FOUND)
|
2014-02-02 22:56:55 +08:00
|
|
|
|
|
|
|
# VTK 5.x components
|
|
|
|
if(NOT VTK_FOUND)
|
|
|
|
find_package(VTK QUIET COMPONENTS vtkCommon NO_MODULE)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(NOT VTK_FOUND)
|
|
|
|
set(HAVE_VTK OFF)
|
|
|
|
message(STATUS "VTK is not found. Please set -DVTK_DIR in CMake to VTK build directory, or to VTK install subdirectory with VTKConfig.cmake file")
|
2014-01-23 18:41:21 +08:00
|
|
|
return()
|
|
|
|
endif()
|
|
|
|
|
2018-02-07 19:59:15 +08:00
|
|
|
# Don't support earlier VTKs
|
2018-10-21 23:02:40 +08:00
|
|
|
if(VTK_VERSION VERSION_LESS "5.8.0")
|
2014-02-02 22:56:55 +08:00
|
|
|
message(STATUS "VTK support is disabled. VTK ver. 5.8.0 is minimum required, but found VTK ver. ${VTK_VERSION}")
|
|
|
|
return()
|
|
|
|
endif()
|
2014-01-19 07:16:06 +08:00
|
|
|
|
2014-02-02 22:56:55 +08:00
|
|
|
# Different Qt versions can't be linked together
|
2021-10-05 00:44:57 +08:00
|
|
|
if((HAVE_QT AND VTK_USE_QT)
|
|
|
|
AND NOT DEFINED FORCE_VTK # deprecated
|
|
|
|
AND NOT DEFINED OPENCV_FORCE_VTK
|
|
|
|
)
|
|
|
|
message(STATUS "VTK support is disabled. Possible incompatible combination: OpenCV+Qt, and VTK ver.${VTK_VERSION} with Qt")
|
|
|
|
message(STATUS "If it is known that VTK was compiled without Qt4, please define '-DOPENCV_FORCE_VTK=TRUE' flag in CMake")
|
2014-02-02 22:56:55 +08:00
|
|
|
return()
|
2014-01-19 07:16:06 +08:00
|
|
|
endif()
|
|
|
|
|
2014-02-02 22:56:55 +08:00
|
|
|
set(HAVE_VTK ON)
|
2017-11-14 22:07:04 +08:00
|
|
|
message(STATUS "Found VTK ${VTK_VERSION} (${VTK_USE_FILE})")
|