mirror of
https://github.com/OpenFOAM/ThirdParty-6.git
synced 2025-12-08 06:57:43 +00:00
87 lines
3.0 KiB
CMake
87 lines
3.0 KiB
CMake
#--------------------------------------------------
|
|
# Find and Use ParaView
|
|
#--------------------------------------------------
|
|
if (ParaView_SOURCE_DIR)
|
|
include_directories( ${PARAVIEW_INCLUDE_DIRS} ${VTK_INCLUDE_DIRS})
|
|
else()
|
|
find_package(ParaView REQUIRED)
|
|
include(${PARAVIEW_USE_FILE})
|
|
endif()
|
|
|
|
add_paraview_plugin(StreamingParticles "1.0"
|
|
SERVER_MANAGER_XML StreamingParticles.xml
|
|
SERVER_MANAGER_SOURCES
|
|
vtkStreamingParticlesRepresentation.cxx
|
|
vtkStreamingParticlesRepresentation.h
|
|
vtkStreamingParticlesPriorityQueue.cxx
|
|
vtkStreamingParticlesPriorityQueue.h
|
|
vtkPVRandomPointsStreamingSource.cxx
|
|
vtkPVRandomPointsStreamingSource.h
|
|
)
|
|
|
|
if(PARAVIEW_ENABLE_COSMOTOOLS
|
|
AND BUILD_TESTING
|
|
AND PARAVIEW_BUILD_QT_GUI)
|
|
include(ParaViewTestingMacros)
|
|
paraview_test_load_data_dirs(StreamingParticles
|
|
adaptive-cosmo
|
|
)
|
|
paraview_test_data_target(StreamingParticles)
|
|
|
|
add_pv_test("pv" "_DISABLE_C"
|
|
COMMAND --client ${CLIENT_EXECUTABLE}
|
|
--enable-bt
|
|
-dr
|
|
--enable-streaming
|
|
--test-directory=${PARAVIEW_TEST_DIR}
|
|
--test-plugin=StreamingParticles
|
|
BASELINE_DIR ${PARAVIEW_TEST_BASELINE_DIR}
|
|
TEST_SCRIPTS ${CMAKE_CURRENT_SOURCE_DIR}/Testing/StreamingParticles.xml
|
|
)
|
|
paraview_test_load_data_dirs(NewGenericIOStreaming
|
|
multiresolution-streaming
|
|
)
|
|
paraview_test_data_target(NewGenericIOStreaming)
|
|
add_pv_test("pv" "_DISABLE_C"
|
|
COMMAND --client ${CLIENT_EXECUTABLE}
|
|
--enable-bt
|
|
-dr
|
|
--mpi
|
|
--enable-streaming
|
|
--test-directory=${PARAVIEW_TEST_DIR}
|
|
--test-plugin=StreamingParticles
|
|
BASELINE_DIR ${PARAVIEW_TEST_BASELINE_DIR}
|
|
TEST_SCRIPTS ${CMAKE_CURRENT_SOURCE_DIR}/Testing/NewGenericIOStreaming.xml
|
|
)
|
|
add_pv_test("pvcs" "_DISABLE_CS"
|
|
COMMAND --server-np 2
|
|
--server $<TARGET_FILE:pvserver>
|
|
--enable-bt --enable-streaming
|
|
--test-plugin=StreamingParticles
|
|
--client ${CLIENT_EXECUTABLE}
|
|
--enable-bt
|
|
-dr
|
|
--mpi
|
|
--enable-streaming
|
|
--test-directory=${PARAVIEW_TEST_DIR}
|
|
--test-plugin=StreamingParticles
|
|
BASELINE_DIR ${PARAVIEW_TEST_BASELINE_DIR}
|
|
TEST_SCRIPTS ${CMAKE_CURRENT_SOURCE_DIR}/Testing/NewGenericIOStreaming.xml
|
|
)
|
|
add_pv_test("pvcrs" "_DISABLE_CRS"
|
|
COMMAND --server-np 2
|
|
--server $<TARGET_FILE:pvserver>
|
|
--enable-bt --enable-streaming
|
|
--test-plugin=StreamingParticles
|
|
--client ${CLIENT_EXECUTABLE}
|
|
--enable-bt
|
|
-dr
|
|
--mpi
|
|
--enable-streaming
|
|
--test-directory=${PARAVIEW_TEST_DIR}
|
|
--test-plugin=StreamingParticles
|
|
BASELINE_DIR ${PARAVIEW_TEST_BASELINE_DIR}
|
|
TEST_SCRIPTS ${CMAKE_CURRENT_SOURCE_DIR}/Testing/NewGenericIOStreaming.xml
|
|
)
|
|
endif()
|