# # This file sets up include directories, link directories, and # compiler settings for a project to use ItkVtkGlue. It should not be # included directly, but rather through the ItkVtkGlue_USE_FILE setting # obtained from ItkVtkGlue.cmake. # # The hints point the find_package to the proper VTK and ITK find_package(VTK REQUIRED HINTS @VTK_DIR@) include(${VTK_USE_FILE}) find_package(ITK REQUIRED HINTS @ITK_DIR@) include(${ITK_USE_FILE}) # Add include directories needed to use ItkVtkGlue. include_directories(@ItkVtkGlue_INCLUDE_DIRS_CONFIG@) # Add link directories needed to use ItkVtkGlue. link_directories(@ItkVtkGlue_LIBRARY_DIRS_CONFIG@) # Define VTK_LIBRARIES if VTK does not define it if(NOT VTK_LIBRARIES) set(VTK_LIBRARIES vtkHybrid vtkVolumeRendering) endif()