kinect/codes/Azure-Kinect-Sensor-SDK/examples/viewer/opengl/CMakeLists.txt

19 lines
376 B
CMake
Raw Permalink Normal View History

2024-03-06 18:05:53 +00:00
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
find_package(OpenGL REQUIRED)
include_directories(
.
${OPENGL_INCLUDE_DIRS}
)
add_executable(viewer_opengl
main.cpp
texture.cpp
viewerwindow.cpp)
target_link_libraries(viewer_opengl PRIVATE
k4a::k4a
glfw::glfw
imgui::imgui
${OPENGL_LIBRARIES})