11 lines
297 B
CMake
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}"
|
|
)
|