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
414 B
21 lines
414 B
# minimum required cmake version: 3.1.0
|
|
cmake_minimum_required(VERSION 3.1.0)
|
|
|
|
project(RealSenseImShowExample)
|
|
|
|
add_executable(rs-imshow rs-imshow.cpp)
|
|
set_property(TARGET rs-imshow PROPERTY CXX_STANDARD 11)
|
|
target_link_libraries(rs-imshow ${DEPENDENCIES})
|
|
set_target_properties (rs-imshow PROPERTIES
|
|
FOLDER "Examples/OpenCV"
|
|
)
|
|
|
|
install(
|
|
TARGETS
|
|
|
|
rs-imshow
|
|
|
|
RUNTIME DESTINATION
|
|
${CMAKE_INSTALL_PREFIX}/bin
|
|
)
|