mirror of
https://github.com/opencv/opencv.git
synced 2025-01-19 06:53:50 +08:00
16 lines
556 B
CMake
16 lines
556 B
CMake
set(OPENCV_APPLE_BUNDLE_NAME "OpenCV")
|
|
set(OPENCV_APPLE_BUNDLE_ID "org.opencv")
|
|
|
|
if(IOS)
|
|
if (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()
|