demo version
This commit is contained in:
parent
fbb282a801
commit
672d6daa8e
125 changed files with 17918 additions and 1481 deletions
22
demo/demo_show_video/CMakeLists.txt
Normal file
22
demo/demo_show_video/CMakeLists.txt
Normal file
|
@ -0,0 +1,22 @@
|
|||
cmake_minimum_required (VERSION 3.8)
|
||||
|
||||
find_package(OpenCV REQUIRED)
|
||||
|
||||
find_package(PahoMqttCpp CONFIG REQUIRED)
|
||||
|
||||
include(FindFFmpeg.cmake)
|
||||
|
||||
add_executable(demo_show_video
|
||||
"src/demo_show_video.cpp")
|
||||
|
||||
target_include_directories(demo_show_video PUBLIC
|
||||
${OpenCV_INCLUDE_DIRS}
|
||||
${FFMPEG_INCLUDE_DIRS})
|
||||
|
||||
target_link_libraries(demo_show_video PRIVATE
|
||||
${FFMPEG_LIBRARIES}
|
||||
${OpenCV_LIBRARIES}
|
||||
PahoMqttCpp::paho-mqttpp3)
|
||||
|
||||
target_compile_features(demo_show_video PUBLIC
|
||||
cxx_std_17)
|
Loading…
Add table
Add a link
Reference in a new issue