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.
14 lines
366 B
14 lines
366 B
4 years ago
|
# get list of modules to wrap
|
||
|
if(HAVE_opencv_js)
|
||
|
message(STATUS "Wrapped in JavaScript(js):")
|
||
|
endif()
|
||
|
set(OPENCV_JS_MODULES "")
|
||
|
foreach(m ${OPENCV_MODULES_BUILD})
|
||
|
if(";${OPENCV_MODULE_${m}_WRAPPERS};" MATCHES ";js;" AND HAVE_${m})
|
||
|
list(APPEND OPENCV_JS_MODULES ${m})
|
||
|
if(HAVE_opencv_js)
|
||
|
message(STATUS " ${m}")
|
||
|
endif()
|
||
|
endif()
|
||
|
endforeach()
|