Blame view

3rdparty/opencv-4.5.4/modules/videoio/cmake/detect_ios.cmake 346 Bytes
f4334277   Hu Chunming   提交3rdparty
1
2
3
4
5
6
7
8
9
10
11
12
13
  if(APPLE AND IOS)
    set(HAVE_CAP_IOS TRUE)
    set(libs
      "-framework Accelerate"
      "-framework AVFoundation"
      "-framework CoreGraphics"
      "-framework CoreImage"
      "-framework CoreMedia"
      "-framework CoreVideo"
      "-framework QuartzCore"
      "-framework UIKit")
    ocv_add_external_target(cap_ios "" "${libs}" "HAVE_CAP_IOS")
  endif()