/usr/lib/vtk-5.8/vtkViewsKit.cmake is in libvtk5-dev 5.8.0-14.1ubuntu3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 | # Directory containing class headers.
SET(VTK_VIEWS_HEADER_DIR "${VTK_INSTALL_PREFIX}/include/vtk-5.8")
# Classes in vtkViews.
SET(VTK_VIEWS_CLASSES
"vtkConvertSelectionDomain"
"vtkDataRepresentation"
"vtkEmptyRepresentation"
"vtkGraphLayoutView"
"vtkHierarchicalGraphPipeline"
"vtkHierarchicalGraphView"
"vtkIcicleView"
"vtkInteractorStyleAreaSelectHover"
"vtkInteractorStyleTreeMapHover"
"vtkRenderedSurfaceRepresentation"
"vtkRenderedGraphRepresentation"
"vtkRenderedRepresentation"
"vtkRenderedTreeAreaRepresentation"
"vtkRenderedHierarchyRepresentation"
"vtkRenderView"
"vtkRenderViewBase"
"vtkTreeAreaView"
"vtkTreeMapView"
"vtkTreeRingView"
"vtkView"
"vtkViewUpdater"
"vtkParallelCoordinatesHistogramRepresentation"
"vtkParallelCoordinatesRepresentation"
"vtkParallelCoordinatesView"
"vtkPipelineGraphSource")
# Abstract classes in vtkViews.
SET(VTK_VIEWS_CLASSES_ABSTRACT)
# Wrap-exclude classes in vtkViews.
SET(VTK_VIEWS_CLASSES_WRAP_EXCLUDE)
# Wrap-special classes in vtkViews.
SET(VTK_VIEWS_CLASSES_WRAP_SPECIAL)
# Wrappable non-class headers for vtkViews.
SET(VTK_VIEWS_WRAP_HEADERS)
# Set convenient variables to test each class.
FOREACH(class ${VTK_VIEWS_CLASSES})
SET(VTK_CLASS_EXISTS_${class} 1)
ENDFOREACH(class)
FOREACH(class ${VTK_VIEWS_CLASSES_ABSTRACT})
SET(VTK_CLASS_ABSTRACT_${class} 1)
ENDFOREACH(class)
FOREACH(class ${VTK_VIEWS_CLASSES_WRAP_EXCLUDE})
SET(VTK_CLASS_WRAP_EXCLUDE_${class} 1)
ENDFOREACH(class)
FOREACH(class ${VTK_VIEWS_CLASSES_WRAP_SPECIAL})
SET(VTK_CLASS_WRAP_SPECIAL_${class} 1)
ENDFOREACH(class)
|