Commit 4af55e64 authored by Alexander Alekhin's avatar Alexander Alekhin

cmake: support OPENCV_ABI_SKIP_MODULES_LIST

backporting of commit f163778d
parent 5e2bcc91
...@@ -2,6 +2,8 @@ if (NOT GENERATE_ABI_DESCRIPTOR) ...@@ -2,6 +2,8 @@ if (NOT GENERATE_ABI_DESCRIPTOR)
return() return()
endif() endif()
set(OPENCV_ABI_SKIP_MODULES_LIST "" CACHE STRING "List of modules to exclude from ABI checker")
set(filename "opencv_abi.xml") set(filename "opencv_abi.xml")
set(path1 "${CMAKE_BINARY_DIR}/${filename}") set(path1 "${CMAKE_BINARY_DIR}/${filename}")
...@@ -28,6 +30,7 @@ foreach(mod ${OPENCV_MODULES_BUILD}) ...@@ -28,6 +30,7 @@ foreach(mod ${OPENCV_MODULES_BUILD})
string(REGEX REPLACE "^opencv_" "" mod "${mod}") string(REGEX REPLACE "^opencv_" "" mod "${mod}")
if(NOT OPENCV_MODULE_opencv_${mod}_CLASS STREQUAL "PUBLIC" if(NOT OPENCV_MODULE_opencv_${mod}_CLASS STREQUAL "PUBLIC"
OR NOT "${OPENCV_MODULE_opencv_${mod}_LOCATION}" STREQUAL "${OpenCV_SOURCE_DIR}/modules/${mod}" # opencv_contrib OR NOT "${OPENCV_MODULE_opencv_${mod}_LOCATION}" STREQUAL "${OpenCV_SOURCE_DIR}/modules/${mod}" # opencv_contrib
OR ";${mod};" MATCHES ";${OPENCV_ABI_SKIP_MODULES_LIST};"
) )
# headers # headers
foreach(h ${OPENCV_MODULE_opencv_${mod}_HEADERS}) foreach(h ${OPENCV_MODULE_opencv_${mod}_HEADERS})
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment