mirror of
https://github.com/opencv/opencv.git
synced 2024-12-05 01:39:13 +08:00
12 lines
229 B
CMake
12 lines
229 B
CMake
if(IOS)
|
|
return()
|
|
endif()
|
|
|
|
set(DEPS opencv_core opencv_imgproc opencv_features2d opencv_calib3d opencv_flann opencv_objdetect)
|
|
if(NOT ANDROID)
|
|
set(DEPS ${DEPS} opencv_gpu)
|
|
endif()
|
|
|
|
define_opencv_module(stitching ${DEPS})
|
|
|