mirror of
https://github.com/overte-org/overte.git
synced 2025-07-10 13:18:33 +02:00
35 lines
1.2 KiB
CMake
35 lines
1.2 KiB
CMake
# Try to find the LeapMotion library
|
|
#
|
|
# You must provide a LEAPMOTION_ROOT_DIR which contains lib and include directories
|
|
#
|
|
# Once done this will define
|
|
#
|
|
# LEAPMOTION_FOUND - system found LEAPMOTION
|
|
# LEAPMOTION_INCLUDE_DIRS - the LEAPMOTION include directory
|
|
# LEAPMOTION_LIBRARIES - Link this to use LEAPMOTION
|
|
#
|
|
# Created on 6/2/2014 by Sam Cake
|
|
# Copyright (c) 2014 High Fidelity
|
|
#
|
|
|
|
set(LEAPMOTION_SEARCH_DIRS "${LEAPMOTION_ROOT_DIR}" "$ENV{HIFI_LIB_DIR}/leapmotion")
|
|
|
|
find_path(LEAPMOTION_INCLUDE_DIRS Leap.h PATH_SUFFIXES include HINTS ${LEAPMOTION_SEARCH_DIRS})
|
|
|
|
if (WIN32)
|
|
find_library(LEAPMOTION_LIBRARY_DEBUG "lib/x86/Leapd.lib" HINTS ${LEAPMOTION_SEARCH_DIRS})
|
|
find_library(LEAPMOTION_LIBRARY_RELEASE "lib/x86/Leap.lib" HINTS ${LEAPMOTION_SEARCH_DIRS})
|
|
endif (WIN32)
|
|
if (APPLE)
|
|
find_library(LEAPMOTION_LIBRARY_RELEASE "lib/libLeap.dylib" HINTS ${LEAPMOTION_SEARCH_DIRS})
|
|
endif (APPLE)
|
|
|
|
include(SelectLibraryConfigurations)
|
|
select_library_configurations(LEAPMOTION)
|
|
|
|
set(LEAPMOTION_LIBRARIES "${LEAPMOTION_LIBARIES}")
|
|
|
|
include(FindPackageHandleStandardArgs)
|
|
find_package_handle_standard_args(LEAPMOTION DEFAULT_MSG LEAPMOTION_INCLUDE_DIRS LEAPMOTION_LIBRARIES)
|
|
|
|
mark_as_advanced(LEAPMOTION_INCLUDE_DIRS LEAPMOTION_LIBRARIES)
|