mirror of
https://github.com/OpenFOAM/ThirdParty-6.git
synced 2025-12-08 06:57:43 +00:00
22 lines
344 B
CMake
22 lines
344 B
CMake
set(_dependencies)
|
|
if (PARAVIEW_ENABLE_PYTHON)
|
|
set(_dependencies
|
|
vtkPython
|
|
vtkWrappingPythonCore
|
|
vtkPythonInterpreter)
|
|
endif ()
|
|
|
|
vtk_module(vtkClientServer
|
|
DEPENDS
|
|
vtkCommonCore
|
|
${_dependencies}
|
|
TEST_DEPENDS
|
|
vtkCommonCore
|
|
vtkTestingCore
|
|
EXCLUDE_FROM_WRAPPING
|
|
TEST_LABELS
|
|
PARAVIEW
|
|
KIT
|
|
vtkPVCore
|
|
)
|