mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-05 22:43:13 +02:00
17 lines
634 B
CMake
17 lines
634 B
CMake
#
|
|
# Created by Brad Hefta-Gaub on 2016/12/7
|
|
# Copyright 2016 High Fidelity, Inc.
|
|
#
|
|
# Distributed under the Apache License, Version 2.0.
|
|
# See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
|
#
|
|
macro(TARGET_KINECT)
|
|
# Kinect SDK data reader is only available on these platforms
|
|
if (WIN32)
|
|
#add_dependency_external_projects(kinect)
|
|
find_package(Kinect REQUIRED)
|
|
target_include_directories(${TARGET_NAME} PRIVATE ${KINECT_INCLUDE_DIRS})
|
|
target_link_libraries(${TARGET_NAME} ${KINECT_LIBRARIES})
|
|
add_definitions(-DHAVE_KINECT)
|
|
endif(WIN32)
|
|
endmacro()
|