Skip to content

Commit

Permalink
Merge pull request #753 from daleglass-overte/disable-neuron
Browse files Browse the repository at this point in the history
Disable Neuron by default
  • Loading branch information
daleglass authored Dec 6, 2023
2 parents 898964d + 3e4a411 commit 91bdb05
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
1 change: 1 addition & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
8 changes: 6 additions & 2 deletions plugins/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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})

Expand Down

0 comments on commit 91bdb05

Please sign in to comment.