From ffac6ac86596794554f925cdf908695342086509 Mon Sep 17 00:00:00 2001 From: Dale Glass Date: Thu, 1 Jul 2021 20:44:45 +0200 Subject: [PATCH] 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. --- plugins/hifiLeapMotion/CMakeLists.txt | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/plugins/hifiLeapMotion/CMakeLists.txt b/plugins/hifiLeapMotion/CMakeLists.txt index 3075107bb3..de2becc360 100644 --- a/plugins/hifiLeapMotion/CMakeLists.txt +++ b/plugins/hifiLeapMotion/CMakeLists.txt @@ -6,7 +6,12 @@ # 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) set(TARGET_NAME hifiLeapMotion) setup_hifi_plugin(Qml)