mirror of
https://github.com/OpenFOAM/ThirdParty-6.git
synced 2025-12-08 06:57:43 +00:00
24 lines
812 B
CMake
24 lines
812 B
CMake
if(ParaView_SOURCE_DIR)
|
|
include_directories(
|
|
${VTK_INCLUDE_DIRS}
|
|
)
|
|
else()
|
|
find_package(ParaView REQUIRED)
|
|
include(${PARAVIEW_USE_FILE})
|
|
endif()
|
|
|
|
# This plugin relies on classes in the vtkAcceleratorsDax VTK module, which
|
|
# is not built by default because the server manager XML points to classes
|
|
# in this module. Usually you could get this module to build by adding this
|
|
# module to a module.cmake file. However, we are not actually building our
|
|
# own source, so we can't really do it. For now, just instruct the user to
|
|
# turn it on manually.
|
|
if(NOT Module_vtkAcceleratorsDax)
|
|
message(SEND_ERROR "Dax plugin requires vtkAcceleratorsDax module. Please turn on Module_vtkAcceleratorsDax CMake option.")
|
|
endif()
|
|
|
|
add_paraview_plugin(Dax "0.1"
|
|
REQUIRED_ON_CLIENT
|
|
SERVER_MANAGER_XML DaxSM.xml
|
|
)
|