mirror of
https://github.com/opencv/opencv.git
synced 2024-11-26 20:20:20 +08:00
73959fed45
* Split videoio dependencies search into pieces, removed obsolete backends
16 lines
394 B
CMake
16 lines
394 B
CMake
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()
|
|
|
|
set(HAVE_CAP_IOS ${HAVE_CAP_IOS} PARENT_SCOPE)
|