mirror of https://github.com/opencv/opencv.git
Open Source Computer Vision Library
https://opencv.org/
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.
41 lines
1.2 KiB
41 lines
1.2 KiB
6 years ago
|
macro(add_backend backend_id cond_var)
|
||
|
if(${cond_var})
|
||
|
include("${CMAKE_CURRENT_LIST_DIR}/detect_${backend_id}.cmake")
|
||
|
endif()
|
||
|
endmacro()
|
||
|
|
||
|
function(ocv_add_external_target name inc link def)
|
||
|
if(BUILD_SHARED_LIBS)
|
||
|
set(imp IMPORTED)
|
||
|
endif()
|
||
|
add_library(ocv.3rdparty.${name} INTERFACE ${imp})
|
||
|
set_target_properties(ocv.3rdparty.${name} PROPERTIES
|
||
|
INTERFACE_INCLUDE_DIRECTORIES "${inc}"
|
||
|
INTERFACE_SYSTEM_INCLUDE_DIRECTORIES "${inc}"
|
||
|
INTERFACE_LINK_LIBRARIES "${link}"
|
||
|
INTERFACE_COMPILE_DEFINITIONS "${def}")
|
||
|
if(NOT BUILD_SHARED_LIBS)
|
||
|
install(TARGETS ocv.3rdparty.${name} EXPORT OpenCVModules)
|
||
|
endif()
|
||
|
endfunction()
|
||
|
|
||
|
add_backend("ffmpeg" WITH_FFMPEG)
|
||
|
add_backend("gstreamer" WITH_GSTREAMER)
|
||
|
add_backend("v4l" WITH_V4L)
|
||
|
|
||
|
add_backend("aravis" WITH_ARAVIS)
|
||
|
add_backend("dc1394" WITH_1394)
|
||
|
add_backend("gphoto" WITH_GPHOTO2)
|
||
|
add_backend("msdk" WITH_MFX)
|
||
|
add_backend("openni2" WITH_OPENNI2)
|
||
|
add_backend("pvapi" WITH_PVAPI)
|
||
|
add_backend("realsense" WITH_LIBREALSENSE)
|
||
|
add_backend("ximea" WITH_XIMEA)
|
||
|
add_backend("xine" WITH_XINE)
|
||
|
|
||
|
add_backend("avfoundation" WITH_AVFOUNDATION)
|
||
|
add_backend("ios" WITH_CAP_IOS)
|
||
|
|
||
|
add_backend("dshow" WITH_DSHOW)
|
||
|
add_backend("msmf" WITH_MSMF)
|