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.
19 lines
792 B
19 lines
792 B
set(OPENCV_APPLE_BUNDLE_NAME "OpenCV") |
|
set(OPENCV_APPLE_BUNDLE_ID "org.opencv") |
|
|
|
if(IOS) |
|
if(MAC_CATALYST) |
|
# Copy the iOS plist over to the OSX directory if building iOS library for Catalyst |
|
configure_file("${OpenCV_SOURCE_DIR}/platforms/ios/Info.plist.in" |
|
"${CMAKE_BINARY_DIR}/osx/Info.plist") |
|
elseif(APPLE_FRAMEWORK AND DYNAMIC_PLIST) |
|
configure_file("${OpenCV_SOURCE_DIR}/platforms/ios/Info.Dynamic.plist.in" |
|
"${CMAKE_BINARY_DIR}/ios/Info.plist") |
|
else() |
|
configure_file("${OpenCV_SOURCE_DIR}/platforms/ios/Info.plist.in" |
|
"${CMAKE_BINARY_DIR}/ios/Info.plist") |
|
endif() |
|
elseif(APPLE) |
|
configure_file("${OpenCV_SOURCE_DIR}/platforms/osx/Info.plist.in" |
|
"${CMAKE_BINARY_DIR}/osx/Info.plist") |
|
endif()
|
|
|