kinect/codes/Azure-Kinect-Sensor-SDK/tools/k4afastcapture_streaming/CMakeLists.txt

11 lines
297 B
CMake

# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
find_package(Threads REQUIRED)
add_executable(fastcapture_streaming k4afastcapture.cpp main.cpp)
target_link_libraries(fastcapture_streaming PRIVATE
k4a::k4a
"${CMAKE_THREAD_LIBS_INIT}"
)