Merge pull request #753 from daleglass-overte/disable-neuron

Disable Neuron by default
This commit is contained in:
Dale Glass 2023-12-06 22:14:25 +01:00 committed by GitHub
commit 91bdb05450
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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})