You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
492 B
21 lines
492 B
# minimum required cmake version: 3.1.0
|
|
cmake_minimum_required(VERSION 3.1.0)
|
|
|
|
project(RealSenseLatencyToolExample)
|
|
|
|
add_executable(rs-latency-tool rs-latency-tool.cpp latency-detector.h ../cv-helpers.hpp)
|
|
set_property(TARGET rs-latency-tool PROPERTY CXX_STANDARD 11)
|
|
target_link_libraries(rs-latency-tool ${DEPENDENCIES})
|
|
set_target_properties (rs-latency-tool PROPERTIES
|
|
FOLDER "Examples/OpenCV"
|
|
)
|
|
|
|
install(
|
|
TARGETS
|
|
|
|
rs-latency-tool
|
|
|
|
RUNTIME DESTINATION
|
|
${CMAKE_INSTALL_PREFIX}/bin
|
|
)
|