Disable Neuron by default

This commit is contained in:
Dale Glass 2023-12-04 15:38:04 -08:00
parent 49c3aea199
commit 3e4a4119dc
2 changed files with 7 additions and 2 deletions

View file

@ -483,6 +483,7 @@ if (BUILD_CLIENT)
endif()
option(USE_SIXENSE "Build Interface with sixense library/plugin" OFF)
option(USE_NEURON "Build Interface with Neuron library/plugin" OFF)
endif()
if (BUILD_CLIENT OR BUILD_SERVER)

View file

@ -31,8 +31,12 @@ if (NOT SERVER_ONLY AND NOT ANDROID)
set(DIR "hifiSpacemouse")
add_subdirectory(${DIR})
set(DIR "hifiNeuron")
add_subdirectory(${DIR})
if (USE_NEURON)
set(DIR "hifiNeuron")
add_subdirectory(${DIR})
endif()
set(DIR "hifiKinect")
add_subdirectory(${DIR})