mirror of
https://github.com/lubosz/overte.git
synced 2025-04-06 01:02:29 +02:00
Disable Neuron by default
This commit is contained in:
parent
49c3aea199
commit
3e4a4119dc
2 changed files with 7 additions and 2 deletions
|
@ -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)
|
||||
|
|
|
@ -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})
|
||||
|
||||
|
|
Loading…
Reference in a new issue