mirror of
https://github.com/OpenFOAM/ThirdParty-6.git
synced 2025-12-08 06:57:43 +00:00
29 lines
654 B
CMake
29 lines
654 B
CMake
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)
|