Cloned library of VTK-5.0.0 with extra build files for internal package management.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
790 B

2 years ago
# Directory containing class headers.
SET(VTK_@VTK_EXPORT_UKIT@_HEADER_DIR "@VTK_EXPORT_HEADER_DIR@")
# Classes in vtk@VTK_EXPORT_KIT@.
SET(VTK_@VTK_EXPORT_UKIT@_CLASSES@KIT_CLASS_LIST@)
# Abstract classes in vtk@VTK_EXPORT_KIT@.
SET(VTK_@VTK_EXPORT_UKIT@_CLASSES_ABSTRACT@KIT_ABSTRACT_LIST@)
# Wrap-exclude classes in vtk@VTK_EXPORT_KIT@.
SET(VTK_@VTK_EXPORT_UKIT@_CLASSES_WRAP_EXCLUDE@KIT_EXCLUDE_LIST@)
# Set convenient variables to test each class.
FOREACH(class ${VTK_@VTK_EXPORT_UKIT@_CLASSES})
SET(VTK_CLASS_EXISTS_${class} 1)
ENDFOREACH(class)
FOREACH(class ${VTK_@VTK_EXPORT_UKIT@_CLASSES_ABSTRACT})
SET(VTK_CLASS_ABSTRACT_${class} 1)
ENDFOREACH(class)
FOREACH(class ${VTK_@VTK_EXPORT_UKIT@_CLASSES_WRAP_EXCLUDE})
SET(VTK_CLASS_WRAP_EXCLUDE_${class} 1)
ENDFOREACH(class)