Skip to content
Snippets Groups Projects
Commit b746bffb authored by Spiros Tsalikis's avatar Spiros Tsalikis
Browse files

Rename VRPlugin to CAVEInteraction

parent 94b6f815
No related branches found
No related tags found
No related merge requests found
......@@ -336,8 +336,8 @@ The following flags affect ParaView directly:
* `PARAVIEW_EXTRA_CMAKE_ARGUMENTS` (default `""`: Extra CMake arguments to
pass to ParaView's configure step. This can be used to set CMake variables
for the build that are otherwise not exposed in the superbuild itself.
* `PARAVIEW_ENABLE_VRPLUGIN` (default `ON`): Enables the VRPlugin. If
`vrpn` is enabled, the VRPlugin will support input devices through a VRPN
* `PARAVIEW_ENABLE_CAVEInteraction` (default `ON`): Enables the CAVEInteraction. If
`vrpn` is enabled, the CAVEInteraction will support input devices through a VRPN
connection. VRUI support is enabled unconditionally on Linux.
* `PARAVIEW_ENABLE_NODEEDITOR` (default `OFF`): Enables the NodeEditor
plugin.
......
......@@ -89,13 +89,13 @@ endif ()
option(PARAVIEW_ENABLE_NODEEDITOR "Enable NodeEditor plugin" ON)
mark_as_advanced(PARAVIEW_ENABLE_NODEEDITOR)
option(PARAVIEW_ENABLE_VRPLUGIN "Enable VRPlugin" ON)
mark_as_advanced(PARAVIEW_ENABLE_VRPLUGIN)
option(PARAVIEW_ENABLE_CAVEInteraction "Enable CAVEInteraction plugin" ON)
mark_as_advanced(PARAVIEW_ENABLE_CAVEInteraction)
# vrui support is only available on linux
if (PARAVIEW_ENABLE_VRPLUGIN AND UNIX)
if (PARAVIEW_ENABLE_CAVEInteraction AND UNIX)
list(APPEND paraview_extra_cmake_options
-DPARAVIEW_PLUGIN_VRPlugin_USE_VRUI:BOOL=ON
-DPARAVIEW_PLUGIN_CAVEInteraction_USE_VRUI:BOOL=ON
)
endif()
......@@ -252,8 +252,8 @@ superbuild_add_project(paraview
-DPARAVIEW_PLUGIN_ENABLE_pvNVIDIAIndeX:BOOL=${nvidiaindex_enabled}
# vrpn
-DPARAVIEW_PLUGIN_ENABLE_VRPlugin:BOOL=${PARAVIEW_ENABLE_VRPLUGIN}
-DPARAVIEW_PLUGIN_VRPlugin_USE_VRPN:BOOL=${vrpn_enabled}
-DPARAVIEW_PLUGIN_ENABLE_CAVEInteraction:BOOL=${PARAVIEW_ENABLE_CAVEInteraction}
-DPARAVIEW_PLUGIN_CAVEInteraction_USE_VRPN:BOOL=${vrpn_enabled}
# vtkm
-DPARAVIEW_PLUGIN_ENABLE_VTKmFilters:BOOL=${vtkm_enabled}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment