Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Utkarsh Ayachit
ParaView-Superbuild
Commits
bc3152df
Commit
bc3152df
authored
Jan 05, 2021
by
Cory Quammen
Browse files
paraview: enable VRUI support only on linux and macos
The sockets implementation needs to be updated to build on Windows.
parent
805db38e
Changes
2
Hide whitespace changes
Inline
Side-by-side
README.md
View file @
bc3152df
...
...
@@ -332,7 +332,7 @@ The following flags affect ParaView directly:
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
connection. VRUI support is enabled unconditionally.
connection. VRUI support is enabled unconditionally
on Linux
.
#### ParaView editions
...
...
projects/paraview.cmake
View file @
bc3152df
...
...
@@ -88,6 +88,13 @@ mark_as_advanced(PARAVIEW_ENABLE_MOTIONFX)
option
(
PARAVIEW_ENABLE_VRPLUGIN
"Enable VRPlugin"
ON
)
mark_as_advanced
(
PARAVIEW_ENABLE_VRPLUGIN
)
# vrui support is only available on linux
if
(
PARAVIEW_ENABLE_VRPLUGIN AND UNIX
)
list
(
APPEND paraview_extra_cmake_options
-DPARAVIEW_PLUGIN_VRPlugin_USE_VRUI:BOOL=ON
)
endif
()
set
(
paraview_use_raytracing OFF
)
if
(
ospray_enabled OR visrtx_enabled
)
set
(
paraview_use_raytracing ON
)
...
...
@@ -185,7 +192,6 @@ superbuild_add_project(paraview
# vrpn
-DPARAVIEW_PLUGIN_ENABLE_VRPlugin:BOOL=
${
PARAVIEW_ENABLE_VRPLUGIN
}
-DPARAVIEW_PLUGIN_VRPlugin_USE_VRUI:BOOL=
${
PARAVIEW_ENABLE_VRPLUGIN
}
-DPARAVIEW_PLUGIN_VRPlugin_USE_VRPN:BOOL=
${
vrpn_enabled
}
# vtkm
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment