mirror of
https://github.com/OpenFOAM/ThirdParty-6.git
synced 2025-12-08 06:57:43 +00:00
23 lines
376 B
CMake
23 lines
376 B
CMake
set (__depends)
|
|
if (PARAVIEW_ENABLE_PYTHON)
|
|
set (__depends pqPython)
|
|
endif()
|
|
vtk_module(pqComponents
|
|
GROUPS
|
|
ParaViewQt
|
|
DEPENDS
|
|
pqCore
|
|
${__depends}
|
|
PRIVATE_DEPENDS
|
|
vtkChartsCore
|
|
vtkIOImage
|
|
vtkPVAnimation
|
|
vtkPVServerManagerDefault
|
|
vtkPVServerManagerRendering
|
|
vtksys
|
|
vtkjsoncpp
|
|
EXCLUDE_FROM_WRAPPING
|
|
TEST_LABELS
|
|
PARAVIEW
|
|
)
|