mirror of
https://github.com/AleziaKurdis/overte.git
synced 2025-04-05 21:12:40 +02:00
Don't use LeapMotion by default.
It doesn't have many users, and causes an annoying 'LEAPMOTIONConfig.cmake' not found error if the SDK isn't installed. We now require running cmake with -DUSE_LEAPMOTION=1 to enable using it.
This commit is contained in:
parent
40f81e4866
commit
ffac6ac865
1 changed files with 6 additions and 1 deletions
|
@ -6,7 +6,12 @@
|
||||||
# See the accompanying file LICENSE or http:#www.apache.org/licenses/LICENSE-2.0.html
|
# See the accompanying file LICENSE or http:#www.apache.org/licenses/LICENSE-2.0.html
|
||||||
#
|
#
|
||||||
|
|
||||||
find_package(LEAPMOTION)
|
if (USE_LEAPMOTION)
|
||||||
|
find_package(LEAPMOTION)
|
||||||
|
else()
|
||||||
|
message(STATUS "Use of Leap Motion SDK not enabled. Run cmake with -DUSE_LEAPMOTION=1 to use it.")
|
||||||
|
endif()
|
||||||
|
|
||||||
if (LEAPMOTION_FOUND)
|
if (LEAPMOTION_FOUND)
|
||||||
set(TARGET_NAME hifiLeapMotion)
|
set(TARGET_NAME hifiLeapMotion)
|
||||||
setup_hifi_plugin(Qml)
|
setup_hifi_plugin(Qml)
|
||||||
|
|
Loading…
Reference in a new issue