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.
 
 
 
 
 
 

11 lines
367 B

ocv_warnings_disable(CMAKE_CXX_FLAGS -Wdeprecated-declarations)
# get list of modules to wrap
# message(STATUS "Wrapped in Objective-C:")
set(OPENCV_OBJC_MODULES)
foreach(m ${OPENCV_MODULES_BUILD})
if (";${OPENCV_MODULE_${m}_WRAPPERS};" MATCHES ";objc;" AND HAVE_${m})
list(APPEND OPENCV_OBJC_MODULES ${m})
#message(STATUS "\t${m}")
endif()
endforeach()