mirror of https://github.com/opencv/opencv.git
Open Source Computer Vision Library
https://opencv.org/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
346 B
14 lines
346 B
6 years ago
|
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()
|