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
|
set (__dependencies)
if (PARAVIEW_ENABLE_PYTHON)
list (APPEND __dependencies vtkPythonInterpreter)
endif ()
vtk_module(vtkPVServerManagerCore
GROUPS
ParaViewCore
DEPENDS
# Explicitely list (rather than transiently through
# vtkPVServerImplementationCore) because it allows us to turn of wrapping
# of vtkPVServerImplementationCore off but still satisfy API dependcy.
vtkCommonCore
vtkPVServerImplementationCore
PRIVATE_DEPENDS
vtksys
vtkjsoncpp
vtkpugixml
${__dependencies}
TEST_LABELS
PARAVIEW
TEST_DEPENDS
vtkPVServerManagerApplication
KIT
vtkPVServerManager
)
unset (__dependencies)
|