opencv/modules/stitching/CMakeLists.txt

14 lines
533 B
CMake
Raw Normal View History

set(the_description "Images stitching")
2014-12-24 14:06:09 +01:00
if(HAVE_CUDA)
ocv_warnings_disable(CMAKE_CXX_FLAGS -Wundef -Wmissing-declarations -Wshadow)
2014-12-24 14:06:09 +01:00
endif()
2015-06-22 19:14:30 +02:00
set(STITCHING_CONTRIB_DEPS "opencv_xfeatures2d")
if(BUILD_SHARED_LIBS AND BUILD_opencv_world)
set(STITCHING_CONTRIB_DEPS "")
endif()
ocv_define_module(stitching opencv_imgproc opencv_features2d opencv_calib3d opencv_objdetect
2015-06-22 19:14:30 +02:00
OPTIONAL opencv_cudaarithm opencv_cudafilters opencv_cudafeatures2d opencv_cudalegacy ${STITCHING_CONTRIB_DEPS}
2015-02-24 16:38:12 +01:00
WRAP python)