mirror of
https://github.com/OpenFOAM/ThirdParty-6.git
synced 2025-12-08 06:57:43 +00:00
19 lines
579 B
CMake
19 lines
579 B
CMake
#########################################################################
|
|
# Everything under Application uses VTK/ParaView ServerManager.
|
|
if (PARAVIEW_BUILD_QT_GUI)
|
|
# Since the full module list can be really large, we only bring in a few
|
|
# modules.
|
|
vtk_module_config(__PV_VTK
|
|
vtkCommonCore
|
|
vtkPVServerManagerCore
|
|
vtkPVServerManagerApplication
|
|
pqCore
|
|
pqComponents
|
|
pqApplicationComponents)
|
|
include_directories(${__PV_VTK_INCLUDE_DIRS})
|
|
link_directories(${__PV_VTK_LIBRARY_DIRS})
|
|
|
|
include(ParaViewBranding)
|
|
add_subdirectory(ParaView)
|
|
endif()
|