mirror of https://github.com/opencv/opencv.git
Merge pull request #14338 from alalek:fix_13849
commit
3ef046b6c9
5 changed files with 25 additions and 18 deletions
@ -1,2 +1,6 @@ |
||||
set(the_description "Camera Calibration and 3D Reconstruction") |
||||
ocv_define_module(calib3d opencv_imgproc opencv_features2d WRAP java python) |
||||
set(debug_modules "") |
||||
if(DEBUG_opencv_calib3d) |
||||
list(APPEND debug_modules opencv_highgui) |
||||
endif() |
||||
ocv_define_module(calib3d opencv_imgproc opencv_features2d ${debug_modules} WRAP java python) |
||||
|
@ -1,2 +1,6 @@ |
||||
set(the_description "2D Features Framework") |
||||
ocv_define_module(features2d opencv_imgproc OPTIONAL opencv_flann opencv_highgui WRAP java python js) |
||||
set(debug_modules "") |
||||
if(DEBUG_opencv_features2d) |
||||
list(APPEND debug_modules opencv_highgui) |
||||
endif() |
||||
ocv_define_module(features2d opencv_imgproc ${debug_modules} OPTIONAL opencv_flann WRAP java python js) |
||||
|
Loading…
Reference in new issue