mirror of
https://github.com/opencv/opencv.git
synced 2025-06-13 13:13:26 +08:00
Fixed CMake issue with FFMPEG videoio configuration
This commit is contained in:
parent
e6f653af44
commit
655b22e050
@ -18,13 +18,11 @@ endif()
|
|||||||
|
|
||||||
set(videoio_hdrs
|
set(videoio_hdrs
|
||||||
${CMAKE_CURRENT_LIST_DIR}/src/precomp.hpp
|
${CMAKE_CURRENT_LIST_DIR}/src/precomp.hpp
|
||||||
${CMAKE_CURRENT_LIST_DIR}/src/cap_ffmpeg_impl.hpp
|
|
||||||
)
|
)
|
||||||
|
|
||||||
set(videoio_srcs
|
set(videoio_srcs
|
||||||
${CMAKE_CURRENT_LIST_DIR}/src/cap.cpp
|
${CMAKE_CURRENT_LIST_DIR}/src/cap.cpp
|
||||||
${CMAKE_CURRENT_LIST_DIR}/src/cap_images.cpp
|
${CMAKE_CURRENT_LIST_DIR}/src/cap_images.cpp
|
||||||
${CMAKE_CURRENT_LIST_DIR}/src/cap_ffmpeg.cpp
|
|
||||||
)
|
)
|
||||||
|
|
||||||
file(GLOB videoio_ext_hdrs
|
file(GLOB videoio_ext_hdrs
|
||||||
@ -111,6 +109,8 @@ if(HAVE_XIMEA)
|
|||||||
endif(HAVE_XIMEA)
|
endif(HAVE_XIMEA)
|
||||||
|
|
||||||
if(HAVE_FFMPEG)
|
if(HAVE_FFMPEG)
|
||||||
|
list(APPEND videoio_hdrs ${CMAKE_CURRENT_LIST_DIR}/src/cap_ffmpeg_impl.hpp)
|
||||||
|
list(APPEND videoio_srcs ${CMAKE_CURRENT_LIST_DIR}/src/cap_ffmpeg.cpp)
|
||||||
if(UNIX AND BZIP2_LIBRARIES)
|
if(UNIX AND BZIP2_LIBRARIES)
|
||||||
list(APPEND VIDEOIO_LIBRARIES ${BZIP2_LIBRARIES})
|
list(APPEND VIDEOIO_LIBRARIES ${BZIP2_LIBRARIES})
|
||||||
endif()
|
endif()
|
||||||
|
Loading…
Reference in New Issue
Block a user