mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-04-05 19:47:06 +02:00
52 lines
1.7 KiB
CMake
52 lines
1.7 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
|
|
#
|
|
|
|
include("${MACRO_DIR}/HifiLibrarySearchHints.cmake")
|
|
hifi_library_search_hints("leapmotion")
|
|
|
|
find_path(LEAPMOTION_INCLUDE_DIRS Leap.h PATH_SUFFIXES include HINTS ${LEAPMOTION_SEARCH_DIRS})
|
|
|
|
if (WIN32)
|
|
|
|
if ("${CMAKE_SIZEOF_VOID_P}" EQUAL "8")
|
|
set(ARCH_DIR "x64")
|
|
else()
|
|
set(ARCH_DIR "x86")
|
|
endif()
|
|
|
|
find_library(LEAPMOTION_LIBRARY_DEBUG Leapd PATH_SUFFIXES "lib/${ARCH_DIR}" HINTS ${LEAPMOTION_SEARCH_DIRS})
|
|
find_library(LEAPMOTION_LIBRARY_RELEASE Leap PATH_SUFFIXES "lib/${ARCH_DIR}" HINTS ${LEAPMOTION_SEARCH_DIRS})
|
|
find_path(LEAPMOTION_DLL_PATH Leap.dll PATH_SUFFIXES "lib/${ARCH_DIR}" HINTS ${LEAPMOTION_SEARCH_DIRS})
|
|
elseif (APPLE)
|
|
find_library(LEAPMOTION_LIBRARY_RELEASE Leap PATH_SUFFIXES lib HINTS ${LEAPMOTION_SEARCH_DIRS})
|
|
endif ()
|
|
|
|
include(SelectLibraryConfigurations)
|
|
select_library_configurations(LEAPMOTION)
|
|
|
|
set(LEAPMOTION_LIBRARIES ${LEAPMOTION_LIBRARY})
|
|
|
|
set(LEAPMOTION_REQUIREMENTS LEAPMOTION_INCLUDE_DIRS LEAPMOTION_LIBRARIES)
|
|
if (WIN32)
|
|
list(APPEND LEAPMOTION_REQUIREMENTS LEAPMOTION_DLL_PATH)
|
|
endif ()
|
|
|
|
include(FindPackageHandleStandardArgs)
|
|
find_package_handle_standard_args(LeapMotion DEFAULT_MSG ${LEAPMOTION_REQUIREMENTS})
|
|
|
|
if (WIN32)
|
|
add_paths_to_fixup_libs(${LEAPMOTION_DLL_PATH})
|
|
endif ()
|
|
|
|
mark_as_advanced(LEAPMOTION_INCLUDE_DIRS LEAPMOTION_LIBRARIES LEAPMOTION_SEARCH_DIRS)
|